From 6edc1cf17c21f983248d0e6b806c5f486615585c Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Sat, 21 Jul 2018 12:36:22 -0500 Subject: [PATCH] Add zip exclude clarification comment --- tools/zip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/zip.js b/tools/zip.js index de146cfa..b78818e3 100644 --- a/tools/zip.js +++ b/tools/zip.js @@ -7,7 +7,7 @@ const archiver = require('archiver'); function createZip() { const fileName = 'stylus.zip'; const exclude = [ - '.*', + '.*', // dot files/folders (glob, not regexp) 'node_modules', 'tools', 'package.json',