-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
39 lines (39 loc) · 2.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "legend-engine-ide-client-vscode-root",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/finos/legend-engine-ide-client-vscode.git"
},
"scripts": {
"test": "yarn workspace legend-engine-ide-client-vscode test",
"compile": "yarn workspaces foreach --all -pt run compile",
"dev:webpack": "yarn workspace legend-engine-ide-client-vscode dev:webpack",
"webpack": "yarn workspace legend-engine-ide-client-vscode webpack",
"webpack:package": "yarn workspace legend-engine-ide-client-vscode webpack:package",
"bundle": "yarn compile && yarn workspace @finos/legend-engine-ide-client-vscode-shared bundle",
"bundle:client": "yarn workspace @finos/legend-engine-ide-client-vscode bundle",
"package": "yarn compile && yarn webpack:package",
"check:copyright": "yarn workspaces foreach --all run check:copyright",
"check:format": "yarn workspaces foreach --all run check:format",
"check:ci": "yarn check:format && yarn check:copyright",
"lint": "npm-run-all --parallel lint:js lint:style",
"lint:ci": "npm-run-all --parallel lint:js --max-warnings=0 lint:style --max-warnings=0",
"lint:js": "yarn workspaces foreach --all run lint:js",
"lint:style": "yarn workspaces foreach --all run lint:style",
"fix:format": "yarn workspaces foreach --all run fix:format",
"mvn:prepare": "yarn workspace legend-engine-ide-client-vscode mvn:prepare",
"release:prepare": "yarn mvn:prepare && yarn bundle && yarn webpack:package && yarn workspace legend-engine-ide-client-vscode dlx @vscode/vsce package -o legend-engine-ide-client-vscode.vsix",
"release:marketPlace": "yarn workspace legend-engine-ide-client-vscode dlx @vscode/vsce publish -i legend-engine-ide-client-vscode.vsix",
"release:openvsx": "yarn workspace legend-engine-ide-client-vscode dlx ovsx publish -i legend-engine-ide-client-vscode.vsix",
"release:shared": "yarn workspace @finos/legend-engine-ide-client-vscode-shared npm publish --access=public",
"release:client": "yarn workspace @finos/legend-engine-ide-client-vscode npm publish --access=public"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"packageManager": "[email protected]"
}