bye bye np

This commit is contained in:
Rick van Lieshout 2022-07-31 12:22:29 +02:00
parent 2a1973c008
commit f83c3a7227
2 changed files with 8 additions and 3 deletions

View File

@ -7,8 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [[8.0.1]((https://github.com/Mastermindzh/react-cookie-consent/releases/tag/8.0.1)] ## [[8.0.1]((https://github.com/Mastermindzh/react-cookie-consent/releases/tag/8.0.1)]
Second try of [np](https://github.com/sindresorhus/np)... ~~Second try of [np](https://github.com/sindresorhus/np)...~~
Removed postinstall Removed postinstall
np is not my thing.. reverted to old release strategy
## [[8.0.0]((https://github.com/Mastermindzh/react-cookie-consent/releases/tag/8.0.0)] ## [[8.0.0]((https://github.com/Mastermindzh/react-cookie-consent/releases/tag/8.0.0)]

View File

@ -1,6 +1,6 @@
{ {
"name": "react-cookie-consent", "name": "react-cookie-consent",
"version": "8.0.1", "version": "8.0.0",
"description": "A small, simple and customizable cookie consent bar for use in React applications.", "description": "A small, simple and customizable cookie consent bar for use in React applications.",
"keywords": [ "keywords": [
"react", "react",
@ -32,6 +32,7 @@
"analyze": "size-limit --why", "analyze": "size-limit --why",
"build": "tsdx build", "build": "tsdx build",
"build-storybook": "build-storybook", "build-storybook": "build-storybook",
"install-husky": "npx husky install",
"lint": "tsdx lint", "lint": "tsdx lint",
"major": "npm --no-git-tag-version version major", "major": "npm --no-git-tag-version version major",
"minor": "npm --no-git-tag-version version minor", "minor": "npm --no-git-tag-version version minor",
@ -39,8 +40,11 @@
"patch": "npm --no-git-tag-version version patch", "patch": "npm --no-git-tag-version version patch",
"prepare": "tsdx build", "prepare": "tsdx build",
"prettier": "prettier 'src/**/*.{js*,ts*,htm*,md,scss}' --write", "prettier": "prettier 'src/**/*.{js*,ts*,htm*,md,scss}' --write",
"install-husky": "npx husky install",
"publish": "npx np", "publish": "npx np",
"release": "npm run build && git add -A && git tag $npm_package_version && git commit -m \"release $npm_package_version\" && git push && git push --tags && npm publish",
"release-major": "npm run major && npm run release",
"release-minor": "npm run minor && npm run release",
"release-patch": "npm run patch && npm run release",
"size": "size-limit", "size": "size-limit",
"start": "tsdx watch", "start": "tsdx watch",
"storybook": "start-storybook -p 6006", "storybook": "start-storybook -p 6006",