Skip to content

Commit

Permalink
rename build and remove from test flow
Browse files Browse the repository at this point in the history
  • Loading branch information
barak007 committed May 31, 2020
1 parent 5f438f9 commit 3f803f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run build && npm run lint",
"pretest": "npm run lint",
"test": "mocha",
"cover": "nyc npm test",
"build": "node scripts/build-regexpu.js",
"build-regexpu": "node scripts/build-regexpu.js",
"report:coveralls": "nyc report --reporter=text-lcov | coveralls",
"report:codecov": "nyc report --reporter=text-lcov | codecov --pipe",
"publish-patch": "npm test && npm version patch && git push && git push --tags && npm publish"
Expand Down
1 change: 1 addition & 0 deletions scripts/build-regexpu.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ fs.writeFileSync(
targetFile,
"/* AUTO GENERATED */\nmodule.exports = " + JSON.stringify(uniReg, null, 4) + '\n'
);

console.log('Done building ' + targetFile)

0 comments on commit 3f803f1

Please sign in to comment.