Skip to content

Commit 1a93a22

Browse files
authored
generator-langium: remove lint call (#2030)
1 parent fb8dc7a commit 1a93a22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/generator-langium/templates/packages/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"main": "./out/extension/main.cjs",
3030
"scripts": {
3131
"clean": "shx rm -fr *.tsbuildinfo out syntaxes",
32-
"vscode:prepublish": "npm run build && npm run --include-workspace-root --workspace=../.. lint",
32+
"vscode:prepublish": "npm run build",
3333
"build:prepare": "shx mkdir -p ./syntaxes/ && shx cp -f ../language/syntaxes/<%= language-id %>.tmLanguage.json ./syntaxes/<%= language-id %>.tmLanguage.json",
3434
"build": "npm run build:prepare && tsc -b tsconfig.json && node esbuild.mjs",
3535
"build:clean": "npm run clean && npm run build",

packages/generator-langium/test/yeoman-generator.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ const PACKAGE_JSON_EXPECTATION_EXTENSION: Record<string, any> = {
307307
main: './out/extension/main.cjs',
308308
scripts: {
309309
'clean': 'shx rm -fr *.tsbuildinfo out syntaxes',
310-
'vscode:prepublish': 'npm run build && npm run --include-workspace-root --workspace=../.. lint',
310+
'vscode:prepublish': 'npm run build',
311311
'build:prepare': 'shx mkdir -p ./syntaxes/ && shx cp -f ../language/syntaxes/hello-world.tmLanguage.json ./syntaxes/hello-world.tmLanguage.json',
312312
'build': 'npm run build:prepare && tsc -b tsconfig.json && node esbuild.mjs',
313313
'build:clean': 'npm run clean && npm run build',

0 commit comments

Comments
 (0)