mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
345 B
14 lines
345 B
12 years ago
|
// this example will bundle every dependency
|
||
|
var P = require("../")
|
||
|
P({ path: "./" })
|
||
|
.on("package", bundleIt)
|
||
|
.on("entry", function (e) {
|
||
|
console.error(e.constructor.name, e.path.substr(e.root.dirname.length + 1))
|
||
|
e.on("package", bundleIt)
|
||
|
})
|
||
|
|
||
|
function bundleIt (p) {
|
||
|
p.bundleDependencies = Object.keys(p.dependencies || {})
|
||
|
}
|
||
|
|