Browse Source

Ensure build process also runs browserify task

pull/7/head
Òscar Casajuana 1 year ago
parent
commit
bf833af0db
No known key found for this signature in database GPG Key ID: 3D8D55409254C7C6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      package.json

+ 2
- 2
package.json

@ -16,8 +16,8 @@
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"build": "npm run clean && ./node_modules/.bin/tsc",
"browserify": "npm run build && browserify dist/index.js --standalone blindsecp256k1 > dist/blindsecp256k1-browser.js",
"build": "npm run clean && ./node_modules/.bin/tsc && npm run browserify",
"browserify": "browserify dist/index.js --standalone blindsecp256k1 > dist/blindsecp256k1-browser.js",
"watch": "./node_modules/.bin/tsc -w -p .",
"ts-node": "./node_modules/.bin/ts-node",
"test": "npm run build && ./node_modules/.bin/mocha -r ts-node/register test/**/*.ts"

Loading…
Cancel
Save