Skip to content

Commit

Permalink
Merge pull request #59 from eyra/master-fix-run-s
Browse files Browse the repository at this point in the history
Fix run-s issue
  • Loading branch information
mellelieuwes authored Oct 11, 2023
2 parents 2bb8b05 + 2ff7cb2 commit 3a428c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"build:install-wheel": "cp -R src/framework/processing/py/dist/. ./public",
"build:py": "npm run build:wheel && npm run build:install-wheel",
"build:app": "react-scripts build",
"start:py": "nodemon --ext py --exec \"run-s build:py\"",
"start:py": "nodemon --ext py --exec \"npm run build:py\"",
"start:app": "react-scripts start",
"start": "concurrently 'run-s start:py' 'run-s start:app'",
"start": "concurrently 'npm run start:py' 'npm run start:app'",
"build": "npm run build:py && npm run build:app && npm run build:css",
"archive": "cd build && zip -r ../release.zip .",
"release": "npm run build && npm run archive",
Expand Down

0 comments on commit 3a428c0

Please sign in to comment.