-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
25 lines (25 loc) · 1.28 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
{
"private": true,
"name": "azure-orbital-integration",
"scripts": {
"build": "npx yarn compile && for dir_name in orbital-helper tcp-to-blob; do echo \"building ${dir_name}\"; npx yarn --cwd ${dir_name} build; done",
"build-orbital-helper": "npx yarn compile && yarn --cwd orbital-helper build",
"build-tcp-to-blob": "npx yarn compile && yarn --cwd tcp-to-blob build",
"build-tools": "npx yarn compile && yarn --cwd tools/orbital-helper-ui build",
"clean": "for dir_name in common-js orbital-helper tcp-to-blob tools/orbital-helper-ui; do echo \"cleaning ${dir_name}\"; npx yarn --cwd ${dir_name} clean; done && rm -rf ./node_modules",
"compile-common-js": "npx yarn --cwd common-js compile",
"compile-orbital-helper": "npx yarn --cwd ornital-helper compile",
"compile-tools": "npx yarn compile-common-js && npx yarn compile-orbital-helper && npx yarn --cwd tools/orbital-helper-ui compile",
"compile": "for dir_name in common-js orbital-helper tcp-to-blob; do echo \"compiling ${dir_name}\"; npx yarn --cwd ${dir_name} compile; done",
"start-ui": "npx yarn --cwd tools/orbital-helper-ui start"
},
"workspaces": [
"common-js",
"orbital-helper",
"tcp-to-blob",
"tools/orbital-helper-ui"
],
"devDependencies": {
"yarn": "^1.22.19"
}
}