From 1dcd11570a6d25ebcb764577022708d188f9fbc3 Mon Sep 17 00:00:00 2001 From: NGPixel Date: Mon, 12 Sep 2016 10:35:42 -0400 Subject: [PATCH] Fix deployment paths --- gulpfile.js | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index bd3e48ed..21db9da1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -60,20 +60,15 @@ var paths = { '!./node_modules/font-awesome/fonts/*-webfont.svg' ], deploypackage: [ - './assets/**/*', - './client/content/**/*', - './controllers/**/*', - './lib/**/*', - './locales/**/*', - './middlewares/**/*', - './models/**/*', - './views/**/*', - './LICENSE', - './agent.js', - './config.sample.yml', - './package.json', - './server.js', - './ws-server.js' + './**/*', + '!node_modules', '!node_modules/**', + '!coverage', '!coverage/**', + '!client/js', '!client/js/**', + '!client/scss', '!client/scss/**', + '!dist', '!dist/**', + '!tests', '!tests/**', + '!.babelrc', '!.gitattributes', '!.gitignore', '!.snyk', '!.travis.yml', + '!gulpfile.js', '!inch.json', '!config.yml', '!wiki.sublime-project' ] };