Skip to content

Commit

Permalink
Explicate dependency on util package
Browse files Browse the repository at this point in the history
[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
  • Loading branch information
kriskowal committed Mar 18, 2014
1 parent e27c47e commit 1c59088
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"prepublish": "./build"
},
"dependencies": {
"formatio": "~1.0"
"formatio": "~1.0",
"util": "^0.10.3"
},
"devDependencies": {
"buster-core": ">=0.6.4",
Expand Down

0 comments on commit 1c59088

Please sign in to comment.