File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed
recipes/ci-cd/github-actions/workflows Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,8 @@ Copied from [cschleiden/vscode-github-actions](https://github.com/cschleiden/vsc
18
18
node-version : ' 12'
19
19
20
20
- run : rm package-lock.json
21
-
22
21
- run : npm --no-git-tag-version version 1.0.${{ github.run_number }}
23
-
24
22
- run : npm install
25
-
26
23
- run : npm run package
27
24
28
25
- name : Create Release
@@ -48,3 +45,20 @@ Copied from [cschleiden/vscode-github-actions](https://github.com/cschleiden/vsc
48
45
asset_content_type : application/vsix
49
46
` ` `
50
47
48
+ Here are the script commands:
49
+
50
+ - ` package.json`
51
+ ` ` ` json
52
+ {
53
+ "scripts": {
54
+ "clean": "rimraf dist out",
55
+ "compile": "tsc -p .",
56
+ "watch": "tsc -watch -p .",
57
+ "package": "npm run clean && vsce package",
58
+ "vscode:prepublish": "webpack --mode production",
59
+ "webpack": "webpack --mode development",
60
+ "webpack-dev": "webpack --mode development --watch",
61
+ "test-compile": "tsc -p ."
62
+ }
63
+ }
64
+ ` ` `
You can’t perform that action at this time.
0 commit comments