forked from qiu8310/minapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 1015 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "minapp-pack",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"publish_app": "lerna publish --registry https://registry.npmjs.org/ --ignore @minapp/wx --ignore '@minapp/example-*' --ignore '@minapp/component-*' --ignore minapp-vscode",
"build_app": "lerna run build --ignore '@minapp/example-*' --ignore '@minapp/component-*'",
"build_exp": "lerna run build --scope '@minapp/component-*' --scope '@minapp/example-*'",
"all_build": "npm run build_app && npm run build_exp",
"all_test": "lerna run test --ignore minapp-vscode",
"all_publish": "lerna publish --ignore @minapp/wx --registry https://registry.npmjs.org/",
"all_publish_tag": "lerna publish --ignore @minapp/wx --npm-tag next --registry https://registry.npmjs.org/ --repo-version 2.0.0-alpha.2",
"build": "tsc .dtpl/dtpl.ts --outDir .dtpl/",
"watch": "tsc -w .dtpl/dtpl.ts --outDir .dtpl/"
},
"devDependencies": {
"lerna": "^2.7.1",
"typescript": "^2.7.0",
"types-dot-template": "^0.2.5"
}
}