Skip to content

Commit aca9d08

Browse files
authored
Merge pull request #389 from swiiny/chore/pump-packages
Chore/pump packages
2 parents ada0f20 + 54d3dd1 commit aca9d08

File tree

19 files changed

+5080
-6964
lines changed

19 files changed

+5080
-6964
lines changed

.github/workflows/pr_labels.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: PR Labels
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
14+
jobs:
15+
label:
16+
runs-on: ubuntu-latest
17+
name: PR Labels
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v3
22+
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: '18'
27+
28+
- name: Install dependencies
29+
run: npm install @octokit/rest
30+
31+
- name: Run label script
32+
working-directory: ./
33+
env:
34+
TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
run: |
36+
node ./scripts/pr_labels_automation.js

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"prettier.jsxSingleQuote": true,
2727
"prettier.singleQuote": true,
2828
"editor.codeActionsOnSave": {
29-
"source.fixAll.eslint": true
29+
"source.fixAll.eslint": "explicit"
3030
},
3131
"prettier.tabWidth": 2,
3232
"prettier.useTabs": true,

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
[![npm version](https://img.shields.io/npm/v/create-nextjs-dapp?color=blue)](https://www.npmjs.com/package/create-nextjs-dapp)
44
[![npm downloads](https://img.shields.io/npm/dm/create-nextjs-dapp.svg?color=blue)](https://www.npmjs.com/package/create-nextjs-dapp)
5-
[![GitHub stars](https://img.shields.io/github/stars/JeremyTheintz/create-nextjs-dapp.svg?label=Stars&style=flat&logo=github&color=blue)](https://www.npmjs.com/package/create-nextjs-dapp)
5+
[![GitHub stars](https://img.shields.io/github/stars/swiiny/create-nextjs-dapp.svg?label=Stars&style=flat&logo=github&color=blue)](https://www.npmjs.com/package/create-nextjs-dapp)
66
![contributions welcome](https://img.shields.io/badge/contributions-welcome-blue.svg?style=flat&logo=github)
7-
![GitHub](https://img.shields.io/github/license/JeremyTheintz/create-nextjs-dapp?color=blue)
7+
![GitHub](https://img.shields.io/github/license/swiiny/create-nextjs-dapp?color=blue)
88

9-
![image](https://github.com/JeremyTheintz/create-nextjs-dapp/raw/main/doc/tagline.png)
9+
![image](https://github.com/swiiny/create-nextjs-dapp/raw/main/doc/tagline.png)
1010

1111
## Table of Contents
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-nextjs-dapp",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"private": false,
55
"type": "module",
66
"scripts": {

packages/base/components/default/Navbar/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { EColor, ESize } from 'theme/theme.enum';
66
import WalletButton from '../WalletButton';
77
import styles from './Navbar.module.scss';
88

9-
const repoUrl = 'https://github.com/JeremyTheintz/create-nextjs-dapp';
9+
const repoUrl = 'https://github.com/swiiny/create-nextjs-dapp';
1010

1111
const Navbar = () => {
1212
return (

0 commit comments

Comments
 (0)