From: Feross Aboukhadijeh Date: Sun, 26 Jan 2014 04:20:09 +0000 (-0800) Subject: add script to produce bundle on publish X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=ae16bc18dcb6b03879988411123f99161767e6b5;p=buffer.git add script to produce bundle on publish --- diff --git a/bundle.sh b/bundle.sh new file mode 100755 index 0000000..ce3fcf2 --- /dev/null +++ b/bundle.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +./node_modules/.bin/browserify --no-detect-globals -r ./ > bundle.js +echo ';module.exports=require("./").Buffer;' >> bundle.js diff --git a/package.json b/package.json index 62d0565..145399d 100644 --- a/package.json +++ b/package.json @@ -9,10 +9,12 @@ }, "devDependencies": { "benchmark": "*", + "browserify": "3.x", "tape": "*" }, "scripts": { "test": "tape test/*.js", + "prepublish": "./bundle.js", "perf": "cd perf/solo && browserify --debug readUInt32BE.js > bundle.js && open index.html" }, "testling": {