Skip to content

Commit

Permalink
Fix npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rozsival committed Nov 2, 2020
1 parent 1555409 commit 0ea31d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -49,18 +49,18 @@
"eslint": "eslint src --cache --ext .ts",
"eslint:fix": "yarn eslint --fix",
"fix": "run-s ts eslint-fix prettier-fix test",
"postversion": "run-s postversion-push-tags postversion-publish postversion-push postversion:echo",
"postversion": "run-s postversion-push-tags postversion-publish postversion-push postversion-echo",
"postversion-echo": "echo \"Successfully released version $npm_package_version!\"",
"postversion-publish": "yarn publish --access public --new-version $npm_package_version",
"postversion-push": "git push",
"postversion-push:tags": "yarn postversion-push --tags",
"postversion-push-tags": "yarn postversion-push --tags",
"prettier": "prettier '**/*.{md,ts}' --check",
"prettier-fix": "yarn prettier --write",
"prepare": "npm run build",
"preversion": "yarn fix",
"test": "jest",
"test-coverage": "yarn test --coverage",
"test-coverage:report": "yarn test-coverage && cat temp/coverage/lcov.info | coveralls",
"test-coverage-report": "yarn test-coverage && cat temp/coverage/lcov.info | coveralls",
"ts": "tsc",
"ts-build": "yarn ts --project tsconfig.build.json"
}
Expand Down

0 comments on commit 0ea31d6

Please sign in to comment.