aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp/lib
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/gulp/lib
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/gulp/lib')
-rw-r--r--node_modules/gulp/lib/completion.js22
-rw-r--r--node_modules/gulp/lib/taskTree.js14
2 files changed, 36 insertions, 0 deletions
diff --git a/node_modules/gulp/lib/completion.js b/node_modules/gulp/lib/completion.js
new file mode 100644
index 000000000..7000250b4
--- /dev/null
+++ b/node_modules/gulp/lib/completion.js
@@ -0,0 +1,22 @@
+'use strict';
+
+var fs = require('fs');
+var path = require('path');
+
+module.exports = function(name) {
+ if (typeof name !== 'string') {
+ throw new Error('Missing completion type');
+ }
+ var file = path.join(__dirname, '../completion', name);
+ try {
+ console.log(fs.readFileSync(file, 'utf8'));
+ process.exit(0);
+ } catch (err) {
+ console.log(
+ 'echo "gulp autocompletion rules for',
+ '\'' + name + '\'',
+ 'not found"'
+ );
+ process.exit(5);
+ }
+};
diff --git a/node_modules/gulp/lib/taskTree.js b/node_modules/gulp/lib/taskTree.js
new file mode 100644
index 000000000..accb1a77f
--- /dev/null
+++ b/node_modules/gulp/lib/taskTree.js
@@ -0,0 +1,14 @@
+'use strict';
+
+module.exports = function(tasks) {
+ return Object.keys(tasks)
+ .reduce(function(prev, task) {
+ prev.nodes.push({
+ label: task,
+ nodes: tasks[task].dep,
+ });
+ return prev;
+ }, {
+ nodes: [],
+ });
+};