revert to npm i and add lerna script to paackage.json
This commit is contained in:
parent
89eab6b4d8
commit
0dc9458b93
2 changed files with 5 additions and 2 deletions
|
@ -37,7 +37,7 @@ jobs:
|
||||||
# fallback to using the latest cache if no exact match is found
|
# fallback to using the latest cache if no exact match is found
|
||||||
|
|
||||||
|
|
||||||
- run: lerna bootstrap
|
- run: npm install
|
||||||
|
|
||||||
- save_cache:
|
- save_cache:
|
||||||
paths:
|
paths:
|
||||||
|
@ -46,4 +46,4 @@ jobs:
|
||||||
v1-dependencies-{{ checksum "package-lock.json" }}
|
v1-dependencies-{{ checksum "package-lock.json" }}
|
||||||
|
|
||||||
# run tests!
|
# run tests!
|
||||||
- run: lerna run test
|
- run: npm run lerna run test
|
|
@ -1,6 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "root",
|
"name": "root",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"lerna": "lerna"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"lerna": "^3.20.2",
|
"lerna": "^3.20.2",
|
||||||
"chai": "^4.2.0",
|
"chai": "^4.2.0",
|
||||||
|
|
Loading…
Reference in a new issue