From 1c5908882a4f2f271e539cd056017533b6664d10 Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Mon, 17 Mar 2014 20:24:12 -0700 Subject: [PATCH] Explicate dependency on util package [Mr][] and [Mop][] serve a similar function to [Browserify][] but supports refresh-to-reload during development using Mr and whole package application transformation with Mop. Thus a build step is not necessary during development, and transforming packages for use in production does not require any configuration changes in source. These loaders support Node.js modules and packages with very high fidelity, inferring where npm installed packages, but with one major caveat, unlike Browserify, Mr does not assume that the running environment has Node.js global modules. This is easily rectified by explicating the dependency on the corresponding package from npm. [Mr]: https://github.com/montagejs/mr [Mop]: https://github.com/montagejs/mop [Browserify]: https://github.com/substack/node-browserify --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 10359f97f..de03049e4 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "prepublish": "./build" }, "dependencies": { - "formatio": "~1.0" + "formatio": "~1.0", + "util": "^0.10.3" }, "devDependencies": { "buster-core": ">=0.6.4",