Skip to content

Commit 1212ee3

Browse files
committed
Merge branch 'develop'
2 parents 221a31a + 8ad450f commit 1212ee3

File tree

5 files changed

+25
-24
lines changed

5 files changed

+25
-24
lines changed

.github/workflows/publish-vscode-extension.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Publish Visual Studio Code Extension
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'Release-*'
@@ -14,8 +15,8 @@ jobs:
1415
- uses: actions/checkout@v3
1516
- uses: actions/setup-node@v3
1617
with:
17-
node-version: 16
18-
- run: npm ci
18+
node-version: 18
19+
- run: npm ci --legacy-peer-deps
1920
- name: Publish to Open VSX Registry
2021
uses: HaaLeo/publish-vscode-extension@v1
2122
with:

client/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"compile": "npx esbuild ./client/src/extension.ts ./server/src/server.ts --color --bundle --outdir=out --entry-names=[name] --chunk-names=vendor --format=cjs --external:vscode --platform=node",
7272
"compile:grammar": "npx antlr4ts -visitor -no-listener -Xexact-output-dir grammars/UCLexer.g4 -o server/src/UC/antlr/generated && npx antlr4ts -visitor -no-listener -Xexact-output-dir grammars/UCParser.g4 -o server/src/UC/antlr/generated",
7373
"compile:preprocessor": "npx antlr4ts -visitor -no-listener -Xexact-output-dir grammars/UCPreprocessorParser.g4 -o server/src/UC/antlr/generated",
74-
"compile:syntax": "npx yaml-convert --np < ./syntaxes/UnrealScript.YAML-tmLanguage > ./out/unrealscript.tmLanguage.json && npx yaml-convert --np < ./syntaxes/unrealScript.preprocessor.YAML-tmLanguage > ./out/unrealscript.preprocessor.tmLanguage.json",
74+
"compile:syntax": "npx yaml-convert --np < ./syntaxes/UnrealScript.YAML-tmLanguage > ./out/unrealscript.tmLanguage.json && npx yaml-convert --np < ./syntaxes/unrealscript.preprocessor.YAML-tmLanguage > ./out/unrealscript.preprocessor.tmLanguage.json",
7575
"watch": "(set NODE_ENV=development) & npm run compile -- --bundle --sourcemap --watch --define:process.env.NODE_ENV=\\\"development\\\"",
7676
"clean": "rimraf out --preserve-root",
7777
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",

server/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)