aboutsummaryrefslogtreecommitdiff
path: root/tools/tasks/npm.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tasks/npm.ts')
-rw-r--r--tools/tasks/npm.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/tasks/npm.ts b/tools/tasks/npm.ts
new file mode 100644
index 0000000..2ab5e76
--- /dev/null
+++ b/tools/tasks/npm.ts
@@ -0,0 +1,5 @@
+export = function npm(gulp, plugins) {
+ return plugins.shell.task([
+ 'npm prune'
+ ]);
+};