-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
lerna.json
32 lines (32 loc) · 835 Bytes
/
lerna.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
{
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"packages/*",
"packages/ngx-selecto/projects/ngx-selecto"
],
"version": "independent",
"lernaHelperOptions": {
"deployFileMap": [
{
"basePath": "packages/selecto/dist",
"dists": [
"demo/release/{{version}}/dist",
"demo/release/latest/dist"
]
},
{
"basePath": "doc",
"dists": [
"demo/release/{{version}}/doc",
"demo/release/latest/doc"
]
}
],
"beforeReleaseScripts": [
"npm run packages:build",
"npm run demo:build",
"npm run deploy"
]
}
}