-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup npm scripts and tooling configs
Signed-off-by: Vit Gottwald <vit.gottwald@broadcom.com>
- Loading branch information
1 parent
132f589
commit b0750c4
Showing
15 changed files
with
76 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Make your own copy to .env which is .gitignore(d) | ||
|
||
# Stop the language server at initial breakpoint | ||
DEBUG_BREAK="true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ | |
node_modules/ | ||
dist/ | ||
out/ | ||
.DS_Store | ||
.env | ||
**/src/generated | ||
**/syntaxes/pli.merged.json | ||
*.tsbuildinfo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
{ | ||
"name": "pli-workspace", | ||
"description": "Base workspace package", | ||
"version": "0.0.1", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"watch": "tsc -b tsconfig.build.json --watch", | ||
"build": "pnpm langium:generate && tsc -b tsconfig.build.json && pnpm --dir packages/vscode-extension build && node ./scripts/merge-tmlanguage.mjs", | ||
"build:clean": "pnpm clean && pnpm build", | ||
"langium:generate": "pnpm --dir packages/language langium:generate", | ||
"langium:watch": "pnpm --dir packages/language langium:watch", | ||
"test": "vitest" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.19.70", | ||
"deepmerge": "^1.5.2", | ||
"langium": "~3.2.1", | ||
"prettier": "^3.4.2", | ||
"shx": "~0.3.4", | ||
"typescript": "~5.4.5", | ||
"vitest": "^1.6.0" | ||
} | ||
"name": "pli-workspace", | ||
"description": "Base workspace package", | ||
"version": "0.0.1", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"clean": "pnpm --dir packages/language clean; pnpm --dir packages/vscode-extension clean", | ||
"generate": "pnpm --dir packages/language langium:generate", | ||
"compile": "tsc -b tsconfig.build.json", | ||
"bundle": "pnpm --dir packages/vscode-extension esbuild:bundle", | ||
"merge": "node ./scripts/merge-tmlanguage.mjs", | ||
"build": "pnpm clean && pnpm generate && pnpm compile && pnpm bundle && pnpm merge", | ||
"test": "vitest", | ||
"pretty": "prettier -w '**/*.ts'" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.19.70", | ||
"deepmerge": "^1.5.2", | ||
"langium": "~3.2.1", | ||
"prettier": "^3.4.2", | ||
"shx": "~0.3.4", | ||
"typescript": "~5.4.5", | ||
"vitest": "^1.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.