Skip to content

Commit 525a0b0

Browse files
authored
Add webpack dummy build as a lint step (#2626)
* Add webpack dummy build as a lint step * Replace lint:tsc with lint:compile
1 parent eaf22ce commit 525a0b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

languageServer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"format": "prettier --write '**/*.{js,json,jsx,md,scss,ts,tsx,yaml,yml}'",
2525
"lint:prettier": "prettier -c '**/*.{js,json,jsx,md,scss,ts,tsx,yaml,yml}'",
2626
"lint:eslint": "eslint --cache '**/*.{js,ts,jsx,tsx}'",
27-
"lint:tsc": "tsc --noEmit",
27+
"lint:compile": "webpack --mode development",
2828
"lint": "run-p 'lint:*'",
2929
"dev": "webpack watch --mode development",
3030
"test": "jest --collect-coverage"

webview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"format": "prettier --write '**/*.{js,json,jsx,md,scss,ts,tsx,yaml,yml}'",
77
"lint:prettier": "prettier -c '**/*.{js,json,jsx,md,scss,ts,tsx,yaml,yml}'",
88
"lint:eslint": "eslint --cache '**/*.{js,ts,jsx,tsx}'",
9-
"lint:tsc": "tsc --noEmit",
9+
"lint:compile": "webpack --mode development",
1010
"lint": "run-p 'lint:*'",
1111
"dev": "webpack watch --mode development",
1212
"build": "webpack --mode production",

0 commit comments

Comments
 (0)