chore: cleanup

This commit is contained in:
Nathan Walker
2020-07-26 22:29:15 -07:00
parent 39bcc8a4ca
commit ee8457443e
4 changed files with 3 additions and 9 deletions

View File

@@ -2,8 +2,7 @@ language: node_js
node_js:
- "node"
script:
- npm i
- npm start setup
- npm run setup
- npm start packages.core.test
- npm start packages.core.build

View File

@@ -7,10 +7,8 @@ TypeScript driven development for native platform api's.
# Develop
```
// install workspace dependencies
npm i
// setup workspace for development
npm start setup
npm run setup
```
Need help?

View File

@@ -3,6 +3,7 @@
"version": "7.0.0-rc.29",
"license": "MIT",
"scripts": {
"setup": "npx rimraf -- hooks node_modules package-lock.json && npm i && ts-patch install && nx run core:setup",
"start": "nps",
"help": "nps-i"
},

View File

@@ -10,10 +10,6 @@ module.exports = {
format: {
script: 'nx format:write',
description: 'Format the source code of the entire workspace (auto-run on precommit hook)'
},
setup: {
script: 'npx rimraf -- hooks node_modules package-lock.json && npm i && ts-patch install && nx run core:setup',
description: 'Setup the workspace for development'
},
// app testing targets
apps: {