beginning to decompose cryptofill to allow dynamic import
This commit is contained in:
parent
c146c584f6
commit
9e919eddb5
|
@ -46,7 +46,8 @@ async function checkCrypto() {
|
||||||
return true;
|
return true;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
try {
|
try {
|
||||||
require('./cryptofill');
|
window.asmCrypto = await import('asmcrypto.js');
|
||||||
|
await import('./cryptofill');
|
||||||
return true;
|
return true;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return false;
|
return false;
|
||||||
|
|
3695
app/cryptofill.js
3695
app/cryptofill.js
File diff suppressed because it is too large
Load Diff
|
@ -1743,9 +1743,9 @@
|
||||||
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
|
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
|
||||||
},
|
},
|
||||||
"asmcrypto.js": {
|
"asmcrypto.js": {
|
||||||
"version": "2.3.2",
|
"version": "0.22.0",
|
||||||
"resolved": "https://registry.npmjs.org/asmcrypto.js/-/asmcrypto.js-2.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/asmcrypto.js/-/asmcrypto.js-0.22.0.tgz",
|
||||||
"integrity": "sha512-3FgFARf7RupsZETQ1nHnhLUUvpcttcCq1iZCaVAbJZbCZ5VNRrNyvpDyHTOb0KC3llFcsyOT/a99NZcCbeiEsA==",
|
"integrity": "sha512-usgMoyXjMbx/ZPdzTSXExhMPur2FTdz/Vo5PVx2gIaBcdAAJNOFlsdgqveM8Cff7W0v+xrf9BwjOV26JSAF9qA==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"asn1": {
|
"asn1": {
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
"@dannycoates/webpack-dev-server": "^3.1.4",
|
"@dannycoates/webpack-dev-server": "^3.1.4",
|
||||||
"@fullhuman/postcss-purgecss": "^1.1.0",
|
"@fullhuman/postcss-purgecss": "^1.1.0",
|
||||||
"@mattiasbuelens/web-streams-polyfill": "0.2.1",
|
"@mattiasbuelens/web-streams-polyfill": "0.2.1",
|
||||||
"asmcrypto.js": "^2.3.2",
|
"asmcrypto.js": "^0.22.0",
|
||||||
"babel-loader": "^8.0.5",
|
"babel-loader": "^8.0.5",
|
||||||
"babel-plugin-istanbul": "^5.1.1",
|
"babel-plugin-istanbul": "^5.1.1",
|
||||||
"base64-js": "^1.3.0",
|
"base64-js": "^1.3.0",
|
||||||
|
|
|
@ -90,10 +90,6 @@ const web = {
|
||||||
{
|
{
|
||||||
test: /\.js$/,
|
test: /\.js$/,
|
||||||
oneOf: [
|
oneOf: [
|
||||||
{
|
|
||||||
include: [require.resolve('./app/cryptofill')],
|
|
||||||
use: ['script-loader']
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
loader: 'babel-loader',
|
loader: 'babel-loader',
|
||||||
include: [
|
include: [
|
||||||
|
|
Loading…
Reference in New Issue