Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
alan2207 committed Aug 20, 2024
1 parent c9cc630 commit a1835b7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ Contributions are always welcome! If you have any ideas, suggestions, fixes, fee

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

## License

Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-pages/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ module.exports = {
'check-file/filename-naming-convention': [
'error',
{
'src/!(pages)/**': 'KEBAB_CASE',
'src/!(pages)/*.{ts,tsx}': 'KEBAB_CASE',
},
{
ignoreMiddleExtensions: true,
Expand Down
4 changes: 2 additions & 2 deletions apps/nextjs-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bulletproof-react",
"version": "0.1.0",
"name": "bulletproof-react-nextjs-pages",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions apps/react-vite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bulletproof-react",
"version": "0.1.0",
"name": "bulletproof-react-vite",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "bulletproof-react",
"private": true,
"version": "1.0.0",
"description": "A simple, scalable, and powerful architecture for building production ready React applications.",
"scripts": {
"prepare": "cd ./apps/nextjs-pages && yarn && cd ../react-vite && yarn"
},
"author": "alan2207",
"license": "MIT"
}

0 comments on commit a1835b7

Please sign in to comment.