Skip to content

Commit a1835b7

Browse files
committed
update
1 parent c9cc630 commit a1835b7

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ Contributions are always welcome! If you have any ideas, suggestions, fixes, fee
5656

5757
1. Clone this repo
5858
2. Create a branch: `git checkout -b your-feature`
59-
3. Make some changes
60-
4. Test your changes
61-
5. Push your branch and open a Pull Request
59+
3. Make sure all dependencies are installed. If not, run the `yarn prepare` script.
60+
4. Make some changes
61+
5. Test your changes
62+
6. Push your branch and open a Pull Request
6263

6364
## License
6465

apps/nextjs-pages/.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ module.exports = {
130130
'check-file/filename-naming-convention': [
131131
'error',
132132
{
133-
'src/!(pages)/**': 'KEBAB_CASE',
133+
'src/!(pages)/*.{ts,tsx}': 'KEBAB_CASE',
134134
},
135135
{
136136
ignoreMiddleExtensions: true,

apps/nextjs-pages/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "bulletproof-react",
3-
"version": "0.1.0",
2+
"name": "bulletproof-react-nextjs-pages",
3+
"version": "1.0.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

apps/react-vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "bulletproof-react",
3-
"version": "0.1.0",
2+
"name": "bulletproof-react-vite",
3+
"version": "1.0.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "bulletproof-react",
3+
"private": true,
4+
"version": "1.0.0",
5+
"description": "A simple, scalable, and powerful architecture for building production ready React applications.",
6+
"scripts": {
7+
"prepare": "cd ./apps/nextjs-pages && yarn && cd ../react-vite && yarn"
8+
},
9+
"author": "alan2207",
10+
"license": "MIT"
11+
}

0 commit comments

Comments
 (0)