aes-decrypter
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -9,2 +9,5 @@ CHANGELOG | ||
## 1.0.2 (2016-06-16) | ||
* specify browserify transform globally | ||
## 1.0.1 (2016-06-16) | ||
@@ -11,0 +14,0 @@ * fixing the build pipeline |
{ | ||
"name": "aes-decrypter", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "decrypt aes-128 content using a key", | ||
@@ -53,2 +53,12 @@ "main": "es5/index.js", | ||
"license": "Apache-2.0", | ||
"browserify": { | ||
"transform": [ | ||
[ | ||
"browserify-shim", | ||
{ | ||
"global": true | ||
} | ||
] | ||
] | ||
}, | ||
"browserify-shim": { | ||
@@ -55,0 +65,0 @@ "qunit": "global:QUnit", |
@@ -13,5 +13,4 @@ import browserify from 'browserify'; | ||
.transform('babelify') | ||
.transform('browserify-shim', {global: true}) | ||
.bundle() | ||
.pipe(fs.createWriteStream('test/dist/bundle.js')); | ||
}); |
@@ -34,4 +34,3 @@ import Promise from 'bluebird'; | ||
transform: [ | ||
'babelify', | ||
['browserify-shim', {global: true}] | ||
'babelify' | ||
] | ||
@@ -44,4 +43,3 @@ }), | ||
transform: [ | ||
'babelify', | ||
['browserify-shim', {global: true}] | ||
'babelify' | ||
] | ||
@@ -48,0 +46,0 @@ }) |
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
Found 1 instance in 1 package
127227
13
3022