Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
test: add && backport tests from webpack core (#62)
Browse files Browse the repository at this point in the history
* fix(package): mv uglify2 to `dependencies` && update `peerDependencies` (#45)

* refactor: apply to `webpack-defaults`

* chore(package): update `webpack-defaults v1.0.1...1.4.0`

* chore: rm `yarn.lock`

* ported uglifyjs unit tests from webpack core repo
  • Loading branch information
hulkish authored and joshwiens committed Jun 29, 2017
1 parent f6c5aa9 commit 3d16715
Show file tree
Hide file tree
Showing 17 changed files with 1,730 additions and 449 deletions.
16 changes: 11 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"useBuiltIns": true,
"targets": {
"node": 4.3
"node": "4.3"
},
"exclude": [
"transform-async-to-generator",
Expand All @@ -17,13 +17,19 @@
"plugins": [
[
"transform-object-rest-spread",
{ "useBuiltIns": true }
{
"useBuiltIns": true
}
]
],
"env": {
"test": {
"presets": ["env"],
"plugins": ["transform-object-rest-spread"]
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}
}
}
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*.snap
/node_modules
/dist
/examples/build
/coverage/
/test/stubs
17 changes: 17 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
codecov:
branch: master
coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
target: auto
patch:
default:
target: auto
changes:
default:
branches: null
comment: off
Loading

0 comments on commit 3d16715

Please sign in to comment.