Skip to content

Commit

Permalink
Rename watch-build commands to just watch.
Browse files Browse the repository at this point in the history
  • Loading branch information
waynesbrain committed Oct 5, 2024
1 parent abbfd65 commit c7fa52a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions labs/demo-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"start-win": "nodemon",
"start-bin": "node bin/jrfs-demo-server.cjs",
"test": "echo 'Sorry, no tests yet!'",
"watch": "tsc -w --noEmit --pretty --skipLibCheck --project tsconfig.eslint.json",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs ../../scripts/build-esm.mjs"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs ../../scripts/build-esm.mjs",
"watch-ts": "tsc -w --noEmit --pretty --skipLibCheck --project tsconfig.eslint.json"
},
"nodemonConfig": {
"delay": "250ms",
Expand Down
2 changes: 1 addition & 1 deletion labs/demo-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"nanoid": "^5.0.7"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"mutative": "1.0.11"
Expand Down
2 changes: 1 addition & 1 deletion packages/idb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"@jrfs/core": "^0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"@jrfs/core": "^0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/typebox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"@jrfs/core": "^0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"@jrfs/core": "^0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/ws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"lint-fix": "eslint . --ext .ts --fix",
"lint-ts": "tsc --noEmit --pretty --project ./tsconfig.eslint.json",
"rm-build": "shx rm -rf lib/*",
"watch-build": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
"watch": "node --watch-path=./src --watch-path=../../node_modules/@jrfs/core/lib ../../scripts/build-esm.mjs lib --tsconfig tsconfig.prod.json"
},
"dependencies": {
"@jrfs/core": "^0.2.0"
Expand Down

0 comments on commit c7fa52a

Please sign in to comment.