Skip to content

Commit

Permalink
Implemented review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Nov 13, 2023
1 parent 651504d commit ae23ec0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion packages/generator-sprotty/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@
},
"scripts": {
"clean": "shx rm -fr app *.tsbuildinfo",
"build": "tsc",
"watch": "tsc --watch",
"run": "yo sprotty",
"debug": "npx --node-arg=--inspect yo sprotty"
"debug": "npx --node-arg=--inspect yo sprotty",
"test": "echo \"No tests defined.\""
},
"files": [
"app",
Expand Down
5 changes: 4 additions & 1 deletion packages/sprotty-elk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"inversify": "^6.0.1"
},
"scripts": {
"clean": "shx rm -fr lib artifacts *.tsbuildinfo"
"clean": "shx rm -fr lib artifacts *.tsbuildinfo",
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest run --config ../../vite.config.ts"
},
"files": [
"lib",
Expand Down
5 changes: 4 additions & 1 deletion packages/sprotty-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
},

"scripts": {
"clean": "shx rm -fr lib artifacts *.tsbuildinfo"
"clean": "shx rm -fr lib artifacts *.tsbuildinfo",
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest run --config ../../vite.config.ts"
},
"files": [
"lib",
Expand Down
5 changes: 4 additions & 1 deletion packages/sprotty/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
"snabbdom-to-html": "^7.1.0"
},
"scripts": {
"clean": "shx rm -fr lib artifacts *.tsbuildinfo"
"clean": "shx rm -fr lib artifacts *.tsbuildinfo",
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest run --config ../../vite.config.ts"
},
"files": [
"lib",
Expand Down

0 comments on commit ae23ec0

Please sign in to comment.