Skip to content

Commit

Permalink
fix package.json
Browse files Browse the repository at this point in the history
NODE_ENV が production のときも prepare が正常終了するようにします
  • Loading branch information
Mogyuchi committed Oct 20, 2023
1 parent 73032bb commit 9aecf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint:fix": "eslint src --fix",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"prepare": "simple-git-hooks"
"prepare": "[ \"$NODE_ENV\" = \"production\" ] || simple-git-hooks"
},
"author": "Discord.js Japan User Group (discordjs-japan.org)",
"license": "MIT",
Expand Down

0 comments on commit 9aecf7f

Please sign in to comment.