diff --git a/public/_example-zipper/Ideas.md b/tools/_example-zipper/Ideas.md similarity index 100% rename from public/_example-zipper/Ideas.md rename to tools/_example-zipper/Ideas.md diff --git a/public/_example-zipper/exampleZipper.js b/tools/_example-zipper/exampleZipper.js similarity index 100% rename from public/_example-zipper/exampleZipper.js rename to tools/_example-zipper/exampleZipper.js diff --git a/public/_example-zipper/test/gulpfile.js b/tools/_example-zipper/test/gulpfile.js similarity index 77% rename from public/_example-zipper/test/gulpfile.js rename to tools/_example-zipper/test/gulpfile.js index aac02c468b..bf6ee0cf6e 100644 --- a/public/_example-zipper/test/gulpfile.js +++ b/tools/_example-zipper/test/gulpfile.js @@ -10,13 +10,13 @@ var _outputFolder = '_zip-output'; gulp.task('help', taskListing); gulp.task('zipExamples', ['clean'], function() { - return exampleZipper.zipExamples("../../docs/_examples", _outputFolder); + return exampleZipper.zipExamples("../../../public/docs/_examples", _outputFolder); }); gulp.task('clean', function (cb) { var cleanPath = path.join(_outputFolder, '**/*.*'); del([ cleanPath, '!**/*.ovr.*'], function (err, paths) { - // console.log('Deleted files/folders:\n', paths.join('\n')); + console.log('Deleted files/folders:\n', paths.join('\n')); cb(); }); });