From ae16bc18dcb6b03879988411123f99161767e6b5 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 25 Jan 2014 20:20:09 -0800 Subject: [PATCH] add script to produce bundle on publish --- bundle.sh | 4 ++++ package.json | 2 ++ 2 files changed, 6 insertions(+) create mode 100755 bundle.sh 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": { -- 2.34.1