Skip to content

Commit

Permalink
chore: dont build docs before publishing to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Edgar-P-yan committed Dec 11, 2023
1 parent 7c65119 commit 3e743e4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.mjs",
"prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build",
"version": "npm run prepublishOnly && git add ."
"prepublishOnly": "npm run build && npm run lint && npm run test",
"build-all-and-test": "npm run doc && npm run lint && npm run test && npm run build",
"version": "npm run build-all-and-test && git add ."
},
"dependencies": {
"xml-js": "^1.6.11"
Expand Down

0 comments on commit 3e743e4

Please sign in to comment.