Skip to content

Commit

Permalink
Fix #1300 Watch for TS files on all frontend packages
Browse files Browse the repository at this point in the history
  • Loading branch information
srosset81 committed Aug 21, 2024
1 parent d1ddce6 commit 30f27df
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/frontend/packages/activitypub-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@semapps/auth-provider": "0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/auth-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@semapps/semantic-data-provider": "0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/date-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'",
"watch": "nodemon --ext ts,tsx,js--watch src --exec 'yarn build'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/field-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@semapps/semantic-data-provider": "0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/geo-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@react-leaflet/core": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/input-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@semapps/semantic-data-provider": "0.7.0"
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/interop-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@semapps/input-components": "0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/list-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"scripts": {
"build": "tsc && parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'"
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'"
},
"dependencies": {
"@semapps/semantic-data-provider": "0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/markdown-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"scripts": {
"build": "parcel build && yalc publish --push --changed",
"watch": "nodemon --watch src --exec 'yarn build'",
"watch": "nodemon --ext ts,tsx,js --watch src --exec 'yarn build'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
Expand Down

0 comments on commit 30f27df

Please sign in to comment.