Skip to content

Commit b2e44e0

Browse files
add oc build step in middle
1 parent 3ad96d5 commit b2e44e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"build": "npm run lint && tsc && node tasks/build.js",
1414
"git-stage-and-push": "node tasks/git-stage-and-push.js",
1515
"npm-publish": "node tasks/npm-publish.js",
16-
"publish-major": "npm run test-silent && npm run version-major && npm run git-stage-and-push && npm run npm-publish",
17-
"publish-minor": "npm run test-silent && npm run version-minor && npm run git-stage-and-push && npm run npm-publish",
18-
"publish-patch": "npm run test-silent && npm run version-patch && npm run git-stage-and-push && npm run npm-publish",
16+
"publish-major": "npm run test-silent && npm run version-major && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish",
17+
"publish-minor": "npm run test-silent && npm run version-minor && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish",
18+
"publish-patch": "npm run test-silent && npm run version-patch && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish",
1919
"test": "npm run build && node tasks/mochaTest.js",
2020
"test-silent": "npm run build && node tasks/mochaTest.js --silent",
2121
"version-major": "node tasks/version.js --type=\"major\"",

0 commit comments

Comments
 (0)