Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 7ae32d9

Browse files
authoredJul 10, 2017
refactor: Apply webpack-defaults & webpack 3.x support (#540)
- refactor: Pass a unique compiler name to get child compilation [483](#483) - refactor: Apply webpack-defaults [542](#542) BREAKING CHANGE: Enforces `engines` of `"node": ">=4.3.0 < 5.0.0 || >= 5.10` - refactor: DeprecationWarning: Chunk.modules [543](#543) BREAKING CHANGE: Updates to `Chunk.mapModules`. This release is not backwards compatible with `Webpack 2.x` due to breaking changes in webpack/webpack#4764 - fix: css generation order issue see: webpack/webpack#5225 BREAKING CHANGE: Enforces `peerDependencies` of `"webpack": "^3.1.0"`.
1 parent dd43832 commit 7ae32d9

File tree

90 files changed

+11205
-1135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+11205
-1135
lines changed
 

‎.babelrc

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"useBuiltIns": true,
7+
"targets": {
8+
"node": "4.3"
9+
},
10+
"exclude": [
11+
"transform-async-to-generator",
12+
"transform-regenerator"
13+
]
14+
}
15+
]
16+
],
17+
"plugins": [
18+
[
19+
"transform-object-rest-spread",
20+
{
21+
"useBuiltIns": true
22+
}
23+
]
24+
],
25+
"env": {
26+
"test": {
27+
"presets": [
28+
"env"
29+
],
30+
"sourceMap" : "inline",
31+
"plugins": [
32+
"transform-object-rest-spread"
33+
]
34+
}
35+
}
36+
}

‎.editorconfig

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
2-
3-
# top-most EditorConfig file
1+
# editorconfig.org
42
root = true
53

6-
# Unix-style newlines with a newline ending every file
74
[*]
85
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
98
end_of_line = lf
109
insert_final_newline = true
11-
indent_style = tab
12-
indent_size = 4
10+
trim_trailing_whitespace = true
1311

14-
# Matches the exact files either package.json or .travis.yml
1512
[{package.json,.travis.yml}]
1613
indent_style = space
1714
indent_size = 2
15+
16+
[.md]
17+
insert_final_newline = false
18+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)