From 016d5cba9e777735ef3993828fff6d77930c7048 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Sun, 16 Mar 2014 15:29:08 +0100 Subject: [PATCH] Fix new manifest --- app/manifest.json | 2 +- gulpfile.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/manifest.json b/app/manifest.json index 88b9cc42..a29b1a36 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -5,7 +5,7 @@ "manifest_version": 2, "app": { "background": { - "scripts": ["vendor/angular/angular.js", "js/background.js"] + "scripts": ["js/background.js"] } }, "permissions": [ diff --git a/gulpfile.js b/gulpfile.js index 45e4e346..79217178 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -44,7 +44,9 @@ gulp.task('copy', function() { gulp.src('app/vendor/cryptoJS/crypto.js') .pipe(gulp.dest('dist/vendor/cryptoJS')), gulp.src('app/vendor/bootstrap/fonts/*') - .pipe(gulp.dest('dist/fonts')) + .pipe(gulp.dest('dist/fonts')), + gulp.src('app/js/background.js') + .pipe(gulp.dest('dist/js')) ); });