init
This commit is contained in:
2
node_modules/watchify/example/files/main.js
generated
vendored
Normal file
2
node_modules/watchify/example/files/main.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
var one = require('./one');
|
||||
console.log(one(5));
|
3
node_modules/watchify/example/files/one.js
generated
vendored
Normal file
3
node_modules/watchify/example/files/one.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
var two = require('./two');
|
||||
|
||||
module.exports = function (x) { return x * two(x + 5) };
|
1
node_modules/watchify/example/files/two.js
generated
vendored
Normal file
1
node_modules/watchify/example/files/two.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
module.exports = function (n) { return n * 11 };
|
Reference in New Issue
Block a user