Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(generator): prevent copied syntaxes from being syntaxes child dir #1079

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/generator-langium/templates/web/.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"prepare:public": "shx mkdir -p ./public && shx cp -fr ./src/static/* ./public/",
"copy:monaco-editor-wrapper": "shx cp -fr ./node_modules/monaco-editor-wrapper/bundle ./public/monaco-editor-wrapper",
"copy:monaco-workers": "shx cp -fr ./node_modules/monaco-editor-workers/dist/ ./public/monaco-editor-workers",
"copy:monarch-syntax": "shx cp -fr ./out/syntaxes/ ./public/syntaxes",
"copy:monarch-syntax": "shx cp -fr ./out/syntaxes ./public/syntaxes",
"build:web": "npm run build && npm run build:monarch && npm run prepare:public && npm run build:worker && npm run copy:monaco-editor-wrapper && npm run copy:monaco-workers && npm run copy:monarch-syntax",
"build:monarch": "tsc -b tsconfig.monarch.json",
"serve": "node ./out/web/app.js"
Expand Down