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:
parent
f79a3f718d
commit
78a0ca937e
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -9,3 +9,4 @@ dist/*.tgz
|
|||
dist/*_debug.js
|
||||
openpgp.store/
|
||||
doc/
|
||||
browserify-cache*.json
|
||||
|
|
11
Gruntfile.js
11
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", {
|
||||
|
|
Loading…
Reference in New Issue
Block a user