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
|
dist/*_debug.js
|
||||||
openpgp.store/
|
openpgp.store/
|
||||||
doc/
|
doc/
|
||||||
|
browserify-cache*.json
|
||||||
|
|
11
Gruntfile.js
11
Gruntfile.js
|
@ -24,6 +24,7 @@ module.exports = function(grunt) {
|
||||||
browserifyOptions: {
|
browserifyOptions: {
|
||||||
standalone: 'openpgp'
|
standalone: 'openpgp'
|
||||||
},
|
},
|
||||||
|
cacheFile: 'browserify-cache.json',
|
||||||
// Don't bundle these packages with openpgp.js
|
// Don't bundle these packages with openpgp.js
|
||||||
external: ['crypto', 'zlib', 'node-localstorage', 'node-fetch', 'asn1.js'],
|
external: ['crypto', 'zlib', 'node-localstorage', 'node-fetch', 'asn1.js'],
|
||||||
transform: [
|
transform: [
|
||||||
|
@ -52,12 +53,14 @@ module.exports = function(grunt) {
|
||||||
debug: true,
|
debug: true,
|
||||||
standalone: 'openpgp'
|
standalone: 'openpgp'
|
||||||
},
|
},
|
||||||
|
cacheFile: 'browserify-cache-debug.json',
|
||||||
|
// Don't bundle these packages with openpgp.js
|
||||||
external: ['crypto', 'zlib', 'node-localstorage', 'node-fetch', 'asn1.js'],
|
external: ['crypto', 'zlib', 'node-localstorage', 'node-fetch', 'asn1.js'],
|
||||||
transform: [
|
transform: [
|
||||||
["babelify", {
|
["babelify", {
|
||||||
global: true,
|
global: true,
|
||||||
// Only babelify asmcrypto in node_modules
|
// Only babelify asmcrypto and address-rfc2822 in node_modules
|
||||||
only: /^(?:.*\/node_modules\/asmcrypto\.js\/|(?!.*\/node_modules\/)).*$/,
|
only: /^(?:.*\/node_modules\/asmcrypto\.js\/|.*\/node_modules\/address-rfc2822\/|(?!.*\/node_modules\/)).*$/,
|
||||||
plugins: ["transform-async-to-generator",
|
plugins: ["transform-async-to-generator",
|
||||||
"syntax-async-functions",
|
"syntax-async-functions",
|
||||||
"transform-regenerator",
|
"transform-regenerator",
|
||||||
|
@ -72,6 +75,9 @@ module.exports = function(grunt) {
|
||||||
worker: {
|
worker: {
|
||||||
files: {
|
files: {
|
||||||
'dist/openpgp.worker.js': ['./src/worker/worker.js']
|
'dist/openpgp.worker.js': ['./src/worker/worker.js']
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
cacheFile: 'browserify-cache-worker.json'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
unittests: {
|
unittests: {
|
||||||
|
@ -79,6 +85,7 @@ module.exports = function(grunt) {
|
||||||
'test/lib/unittests-bundle.js': ['./test/unittests.js']
|
'test/lib/unittests-bundle.js': ['./test/unittests.js']
|
||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
|
cacheFile: 'browserify-cache-unittests.json',
|
||||||
external: ['buffer', 'openpgp', '../../dist/openpgp', '../../../dist/openpgp'],
|
external: ['buffer', 'openpgp', '../../dist/openpgp', '../../../dist/openpgp'],
|
||||||
transform: [
|
transform: [
|
||||||
["babelify", {
|
["babelify", {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user