1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00

wrapping lerna commands in NPM scripts

This commit is contained in:
Martin McKeaveney 2020-01-22 13:50:39 +00:00
parent b4255c3c56
commit 6f1cce84a5
2 changed files with 9 additions and 6 deletions

View file

@ -4,5 +4,10 @@
"devDependencies": { "devDependencies": {
"lerna": "^3.14.1" "lerna": "^3.14.1"
}, },
"dependencies": {} "dependencies": {},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"init": "lerna run initialise"
}
} }

View file

@ -56,8 +56,6 @@ Install requires [node-gyp](https://github.com/nodejs/node-gyp), due to a depend
*yarn -* `npm install -g yarn` *yarn -* `npm install -g yarn`
*lerna -* `npm install -g lerna`
*jest* - `npm install -g jest` *jest* - `npm install -g jest`
### 2. Clone this repository ### 2. Clone this repository
@ -68,11 +66,11 @@ then `cd ` into your local copy...
### 3. Install and Build ### 3. Install and Build
`lerna bootstrap` will install all modules `yarn bootstrap` will install all modules
`lerna run build` will build all packages `yarn build` will build all packages
`lerna run initialise` will initialise your budibase (i.e. create local database) `yarn initialise` will initialise your budibase (i.e. create local database)
### 4. Running ### 4. Running