You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@senssoft.apache.org by rf...@apache.org on 2017/09/18 17:28:17 UTC

[12/21] incubator-senssoft-useralejs git commit: Updated build file to account for separate options/background/content scripts

Updated build file to account for separate options/background/content scripts


Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs/commit/2f0f253e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs/tree/2f0f253e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs/diff/2f0f253e

Branch: refs/heads/SENSSOFT-192
Commit: 2f0f253e0532d00ebbcc92ae106d87da029d7331
Parents: c426c42
Author: Rob Foley <ro...@gmail.com>
Authored: Wed Sep 13 14:16:47 2017 -0700
Committer: Rob Foley <ro...@gmail.com>
Committed: Wed Sep 13 14:16:47 2017 -0700

----------------------------------------------------------------------
 gulpfile.js | 77 ++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 53 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs/blob/2f0f253e/gulpfile.js
----------------------------------------------------------------------
diff --git a/gulpfile.js b/gulpfile.js
index ebe5dab..7e482bc 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -56,35 +56,64 @@ gulp.task('rollup', function() {
   });
 });
 
-// Copy the rolled-up userale.js script into the webext dir
-gulp.task('copy-userale-script', ['rollup'], function() {
-    return gulp.src('build/' + userale + '.js')
-               .pipe(gulp.dest('build/' + userAleWebExtDirName));
-})
+
+// Build the module with Rollup
+gulp.task('rollup-web-ext-content', function() {
+  return rollup({
+    entry : 'src/' + userAleWebExtDirName + '/content.js',
+    plugins : [
+      json()
+    ]
+  })
+  .then(function(bundle) {
+    return bundle.write({
+      moduleName : 'user-ale-ext-content',
+      dest : 'build/' + userAleWebExtDirName + '/content.js'
+    });
+  });
+});
+
+// Build the module with Rollup
+gulp.task('rollup-web-ext-background', function() {
+  return rollup({
+    entry : 'src/' + userAleWebExtDirName + '/background.js',
+    plugins : [
+      json()
+    ]
+  })
+  .then(function(bundle) {
+    return bundle.write({
+      moduleName : 'user-ale-ext-background',
+      dest : 'build/' + userAleWebExtDirName + '/background.js'
+    });
+  });
+});
+
+// Build the module with Rollup
+gulp.task('rollup-web-ext-options', function() {
+  return rollup({
+    entry : 'src/' + userAleWebExtDirName + '/options.js',
+    plugins : [
+      json()
+    ]
+  })
+  .then(function(bundle) {
+    return bundle.write({
+      moduleName : 'user-ale-ext-options',
+      dest : 'build/' + userAleWebExtDirName + '/options.js'
+    });
+  });
+});
 
 // Build for the browser web extension
-gulp.task('build-web-ext', ['copy-userale-script'], function() {
-    // We setup some filters so that we can work on specific files from the stream
-    const f1 = filter(['**/*.js'], {restore: true});
-    const f2 = filter(['**/manifest.json'], {restore: true});
-    const f3 = filter(['**/globals.js'], {restore: true});
-    
+gulp.task('build-web-ext', ['rollup-web-ext-options', 'rollup-web-ext-background', 'rollup-web-ext-content'], function() {
     return gulp.src(['src/' + userAleWebExtDirName + '/icons/**/*.*',
-              'src/' + userAleWebExtDirName + '/*.*',
-              '!src/' + userAleWebExtDirName + '/README.md'],
+              'src/' + userAleWebExtDirName + '/manifest.json',
+              'src/' + userAleWebExtDirName + '/optionsPage.html'
+              ],
              { base: 'src/' + userAleWebExtDirName + '' })
-            .pipe(f1)
-            .pipe(minifier({}, uglifyHarmony))
             .on('error', gutil.log)
-            .pipe(f1.restore)
-            .pipe(f2)
-            .pipe(jsonModify({ key: "web_accessible_resources", value: [ userale + '.js' ]}))
-            .pipe(f2.restore)
-            .pipe(f3)
-            .pipe(replace(/userAleScript=\".*?\"/g, 'userAleScript=\'' + userale + '.js\''))
-            .pipe(f3.restore)
-            .pipe(gulp.dest('build/' + userAleWebExtDirName + '/'));
-        
+            .pipe(gulp.dest('build/' + userAleWebExtDirName + '/'));        
 });
 
 // Minify and output completed build