Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 68 additions & 13 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/examples/react-16/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "react-16",
"private": true,
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start"
"dev": "DISABLE_ESLINT_PLUGIN=true PORT=3016 react-scripts start"
},
"dependencies": {
"@propeldata/ui-kit": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion app/examples/react-17/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "react-17",
"private": true,
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start"
"dev": "DISABLE_ESLINT_PLUGIN=true PORT=3017 react-scripts start"
},
"dependencies": {
"@propeldata/ui-kit": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion app/examples/react-18/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "react-18",
"private": true,
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start"
"dev": "DISABLE_ESLINT_PLUGIN=true PORT=3018 react-scripts start"
},
"dependencies": {
"@propeldata/ui-kit": "workspace:^",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
],
"nmHoistingLimits": "workspaces",
"scripts": {
"examples": "turbo run dev",
"build": "turbo run build",
"prepare": "yarn build",
"lint": "turbo run lint",
Expand Down
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"outputs": []
},
"dev": {
"cache": false
"cache": false,
"dependsOn": ["^build"],
"inputs": ["apps/**"]
},
"test": {
"dependsOn": ["^build"]
Expand Down