- run: yarn run lint
- run: yarn run test:types
- - run: yarn build
- - run: yarn build:dts
+ - run: yarn run build
+ - run: yarn run build:dts
- run: yarn run test:unit --maxWorkers=2
- run: yarn run build:e2e
- run: yarn run test:e2e
"README.md"
],
"scripts": {
- "build": "yarn rollup -c rollup.config.js",
+ "build": "rollup -c rollup.config.js",
"build:dts": "api-extractor run --local --verbose",
"dev": "webpack-dev-server --mode=development",
"release": "bash scripts/release.sh",
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Releasing v$VERSION ..."
- npm test
+ yarn run test
- yarn build
- yarn build:dts
+ yarn run build
+ yarn run build:dts
# generate the version so that the changelog can be generated too
yarn version --no-git-tag-version --no-commit-hooks --new-version $VERSION