From 78a0ca937ee02214a643a085f25d28045fa22af0 Mon Sep 17 00:00:00 2001 From: Daniel Huigens Date: Tue, 29 May 2018 15:51:12 +0200 Subject: [PATCH] Cache browserified modules Adding asmcrypto's SHA1 and SHA512 made browserify a lot slower, this makes it a lot faster on the second run at least. --- .gitignore | 1 + Gruntfile.js | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 02b7c387..82078778 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ dist/*.tgz dist/*_debug.js openpgp.store/ doc/ +browserify-cache*.json diff --git a/Gruntfile.js b/Gruntfile.js index 93ea0cee..08979b2d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -24,6 +24,7 @@ module.exports = function(grunt) { browserifyOptions: { standalone: 'openpgp' }, + cacheFile: 'browserify-cache.json', // Don't bundle these packages with openpgp.js external: ['crypto', 'zlib', 'node-localstorage', 'node-fetch', 'asn1.js'], transform: [ @@ -52,12 +53,14 @@ module.exports = function(grunt) { debug: true, standalone: 'openpgp' }, + cacheFile: 'browserify-cache-debug.json', + // Don't bundle these packages with openpgp.js external: ['crypto', 'zlib', 'node-localstorage', 'node-fetch', 'asn1.js'], transform: [ ["babelify", { global: true, - // Only babelify asmcrypto in node_modules - only: /^(?:.*\/node_modules\/asmcrypto\.js\/|(?!.*\/node_modules\/)).*$/, + // Only babelify asmcrypto and address-rfc2822 in node_modules + only: /^(?:.*\/node_modules\/asmcrypto\.js\/|.*\/node_modules\/address-rfc2822\/|(?!.*\/node_modules\/)).*$/, plugins: ["transform-async-to-generator", "syntax-async-functions", "transform-regenerator", @@ -72,6 +75,9 @@ module.exports = function(grunt) { worker: { files: { 'dist/openpgp.worker.js': ['./src/worker/worker.js'] + }, + options: { + cacheFile: 'browserify-cache-worker.json' } }, unittests: { @@ -79,6 +85,7 @@ module.exports = function(grunt) { 'test/lib/unittests-bundle.js': ['./test/unittests.js'] }, options: { + cacheFile: 'browserify-cache-unittests.json', external: ['buffer', 'openpgp', '../../dist/openpgp', '../../../dist/openpgp'], transform: [ ["babelify", {