chore: rename scripts

This commit is contained in:
mathuo 2021-03-24 17:42:07 +00:00
parent f0526ff278
commit 822180e533
5 changed files with 11 additions and 8 deletions

View File

@ -16,15 +16,15 @@ jobs:
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run bootstrap
- run: npm run build
- run: npm run test-cov
- run: npm run test:cov
- run: npm run codecov-publish
env:
CI: true

View File

@ -22,6 +22,8 @@ A zero dependency layout manager based on the layering of split-view components
- Code examples [here](https://github.com/mathuo/dockview/tree/master/packages/splitview-demo/src/stories).
- Generated TypeDocs can be found [here](https://mathuo.github.io/dockview/output/docs/index.html).
Want to inspect the deployed package? Go to https://unpkg.com/browse/dockview@latest/
### Features
- Simple splitviews, nested splitviews (i.e. gridviews) supporting full layout managment with
dockable and tabular views

View File

@ -13,7 +13,7 @@
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap --hoist",
"bootstrap-no-hoist": "lerna bootstrap",
"test-cov": "jest --coverage",
"test:cov": "jest --coverage",
"codecov-publish": "codecov",
"version-beta-build": "lerna version prerelease --preid beta",
"publish-app": "lerna publish"

View File

@ -22,6 +22,7 @@ A zero dependency layout manager based on the layering of split-view components
- Code examples [here](https://github.com/mathuo/dockview/tree/master/packages/splitview-demo/src/stories).
- Generated TypeDocs can be found [here](https://mathuo.github.io/dockview/output/docs/index.html).
Want to inspect the deployed package? Go to https://unpkg.com/browse/dockview@latest/
### Features
- Simple splitviews, nested splitviews (i.e. gridviews) supporting full layout managment with
dockable and tabular views

View File

@ -25,7 +25,7 @@
"preversion": "npm run rebuild && npm run test",
"rebuild": "npm run clean && npm run build",
"test": "cross-env ../../node_modules/.bin/jest --selectProjects dockview",
"test-cov": "cross-env ../../node_modules/.bin/jest --selectProjects dockview --coverage"
"test:cov": "cross-env ../../node_modules/.bin/jest --selectProjects dockview --coverage"
},
"files": [
"dist",