summaryrefslogtreecommitdiffstats
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorDaniel Schaal <daniel@schaal.email>2017-06-18 12:19:38 +0200
committerBernhard Posselt <BernhardPosselt@users.noreply.github.com>2017-06-18 12:19:38 +0200
commitfd630242dade58b7f58de638d64ef1f0db7ae36d (patch)
tree0e5fc827c0bb489af4595870ced3d0c3a5744b19 /js/gulpfile.js
parentc32d85c11954fdd7592856d1e403c41cb2253fb0 (diff)
Remove bower, install everything using npm (#197)
* Remove bower, install everything using npm Remove js-url and use a simple function to get the query param. * Bundle all js scripts in app.min.js * Move jquery to devDependencies * Remove es6-shim, most common browsers support es6 natively.
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r--js/gulpfile.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index 30d6d545d..b6b3d123b 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -26,6 +26,12 @@ const phpunitConfig = __dirname + '/../phpunit.xml';
const karmaConfig = __dirname + '/karma.conf.js';
const destinationFolder = __dirname + '/build/';
const sources = [
+ 'node_modules/angular/angular.min.js',
+ 'node_modules/angular-animate/angular-animate.min.js',
+ 'node_modules/angular-route/angular-route.min.js',
+ 'node_modules/angular-sanitize/angular-sanitize.min.js',
+ 'node_modules/moment/min/moment-with-locales.min.js',
+ 'node_modules/masonry-layout/dist/masonry.pkgd.min.js',
'app/App.js', 'app/Config.js', 'app/Run.js',
'controller/**/*.js',
'filter/**/*.js',