Skip to content

Commit 2aa3e90

Browse files
committed
0.10.0 release
1 parent 5ad677e commit 2aa3e90

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
node_modules
33
npm-debug.log
44
*.js.map
5-
test/output
5+
test/output
6+
yarn.lock

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-obfuscator",
3-
"version": "0.9.3",
3+
"version": "0.10.0",
44
"description": "javascript-obfuscator plugin for Webpack",
55
"keywords": [
66
"obfuscator",
@@ -14,15 +14,15 @@
1414
],
1515
"main": "index.js",
1616
"dependencies": {
17-
"javascript-obfuscator": "0.9.3",
17+
"javascript-obfuscator": "0.10.0",
1818
"multi-stage-sourcemap": "0.2.1",
1919
"multimatch": "2.1.0"
2020
},
2121
"devDependencies": {
22-
"@types/node": "7.0.4",
23-
"typescript": "2.1.5",
24-
"typings": "2.1.0",
25-
"webpack": "2.2.0-rc.4"
22+
"@types/node": "8.0.17",
23+
"typescript": "2.4.2",
24+
"typings": "2.1.1",
25+
"webpack": "3.4.1"
2626
},
2727
"repository": {
2828
"type": "git",

test/config/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
}, ['index1*'])
2020
],
2121
output: {
22-
path: 'test/output',
22+
path: __dirname + 'test/output',
2323
filename: '[name].js'
2424
}
2525
};

0 commit comments

Comments
 (0)