Skip to content

Commit

Permalink
Run all compile steps while watch is active
Browse files Browse the repository at this point in the history
  • Loading branch information
dpwatrous authored and gingi committed Nov 9, 2023
1 parent 61d8e67 commit df3f7bf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/arm-batch-rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"test:all": "npm run test:coverage",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch",
"watch": "npm run compile:esm -- --watch --preserveWatchOutput",
"watch": "run-p 'compile:* -- --watch --preserveWatchOutput'",
"workspace:build": "npm run build",
"workspace:build:clean": "npm run build:clean",
"workspace:build:desktop": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/bonito-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:watch": "jest --watch",
"lint": "eslint .",
"watch": "npm run compile:esm -- --watch --preserveWatchOutput",
"watch": "run-p 'compile:* -- --watch --preserveWatchOutput'",
"workspace:build": "npm run build",
"workspace:build:clean": "npm run build:clean",
"workspace:build:desktop": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/bonito-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"test:a11y": "cross-env BE_ENABLE_A11Y_TESTING=true npm run test",
"test:a11y:watch": "cross-env BE_ENABLE_A11Y_TESTING=true npm run test:watch",
"lint": "eslint .",
"watch": "npm run compile:esm -- --watch --preserveWatchOutput",
"watch": "run-p 'compile:* -- --watch --preserveWatchOutput'",
"workspace:build": "npm run build",
"workspace:build:clean": "npm run build:clean",
"workspace:build:desktop": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:watch": "jest --watch",
"lint": "eslint .",
"watch": "npm run compile:esm -- --watch --preserveWatchOutput",
"watch": "run-p 'compile:* -- --watch --preserveWatchOutput'",
"workspace:watch:lib": "npm run watch",
"workspace:build": "npm run build",
"workspace:build:clean": "npm run build:clean",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"test:a11y": "cross-env BE_ENABLE_A11Y_TESTING=true npm run test",
"test:a11y:watch": "cross-env BE_ENABLE_A11Y_TESTING=true npm run test:watch",
"lint": "eslint .",
"watch": "npm run compile:esm -- --watch --preserveWatchOutput",
"watch": "run-p 'compile:* -- --watch --preserveWatchOutput'",
"workspace:build": "npm run build",
"workspace:build:clean": "npm run build:clean",
"workspace:build:desktop": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:watch": "jest --watch",
"lint": "eslint .",
"watch": "npm run compile:esm -- --watch --preserveWatchOutput",
"watch": "run-p 'compile:* -- --watch --preserveWatchOutput'",
"workspace:build": "npm run build",
"workspace:build:clean": "npm run build:clean",
"workspace:build:desktop": "npm run build",
Expand Down

0 comments on commit df3f7bf

Please sign in to comment.