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.
This commit is contained in:
Daniel Huigens 2018-05-29 15:51:12 +02:00
parent f79a3f718d
commit 78a0ca937e
2 changed files with 10 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ dist/*.tgz
dist/*_debug.js
openpgp.store/
doc/
browserify-cache*.json

View File

@ -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", {