chore: fix postinstall script
This commit is contained in:
parent
a53510fffd
commit
89788f6e97
2 changed files with 4 additions and 6 deletions
|
@ -1,11 +1,9 @@
|
||||||
## 1.0.0 (2021-11-04)
|
## 1.0.2 (2021-11-04)
|
||||||
|
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
* initial project ([683357f](https://code.relms.dev/NeonJS/framework/commit/683357fec1ad39d8376f56d8380e21c17db038ee))
|
* initial project ([683357f](https://code.relms.dev/NeonJS/framework/commit/683357fec1ad39d8376f56d8380e21c17db038ee))
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* pino logger error ([f5d5667](https://code.relms.dev/NeonJS/framework/commit/f5d5667be36ca3c16f8d9bc93915f9996e3c4f5b))
|
* pino logger error ([f5d5667](https://code.relms.dev/NeonJS/framework/commit/f5d5667be36ca3c16f8d9bc93915f9996e3c4f5b))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@neonjs/framework",
|
"name": "@neonjs/framework",
|
||||||
"version": "1.0.2",
|
"version": "1.0.0",
|
||||||
"description": "Discord.JS Slash Commands based framework",
|
"description": "Discord.JS Slash Commands based framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"package.json",
|
"package.json",
|
||||||
"LICENSE",
|
"LICENSE",
|
||||||
"README.md",
|
"README.md",
|
||||||
"CHANGELOG.md"
|
"CHANGELOG"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
"commit": "cz",
|
"commit": "cz",
|
||||||
"lint": "eslint --format=pretty src",
|
"lint": "eslint --format=pretty src",
|
||||||
"lint:fix": "eslint --format=pretty src --fix",
|
"lint:fix": "eslint --format=pretty src --fix",
|
||||||
"_postinstall": "husky install",
|
"postinstall": "husky install",
|
||||||
"prepublishOnly": "pinst --disable",
|
"prepublishOnly": "pinst --disable",
|
||||||
"postpublish": "pinst --enable",
|
"postpublish": "pinst --enable",
|
||||||
"release": "semantic-release"
|
"release": "semantic-release"
|
||||||
|
|
Reference in a new issue