Skip to content

Commit

Permalink
0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sanex3339 committed Jul 27, 2017
1 parent 5ad677e commit 2aa3e90
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
node_modules
npm-debug.log
*.js.map
test/output
test/output
yarn.lock
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-obfuscator",
"version": "0.9.3",
"version": "0.10.0",
"description": "javascript-obfuscator plugin for Webpack",
"keywords": [
"obfuscator",
Expand All @@ -14,15 +14,15 @@
],
"main": "index.js",
"dependencies": {
"javascript-obfuscator": "0.9.3",
"javascript-obfuscator": "0.10.0",
"multi-stage-sourcemap": "0.2.1",
"multimatch": "2.1.0"
},
"devDependencies": {
"@types/node": "7.0.4",
"typescript": "2.1.5",
"typings": "2.1.0",
"webpack": "2.2.0-rc.4"
"@types/node": "8.0.17",
"typescript": "2.4.2",
"typings": "2.1.1",
"webpack": "3.4.1"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
}, ['index1*'])
],
output: {
path: 'test/output',
path: __dirname + 'test/output',
filename: '[name].js'
}
};

0 comments on commit 2aa3e90

Please sign in to comment.