babel-loader 8.0.0-beta.6 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +2 -5
package/README.md
CHANGED
@@ -22,16 +22,16 @@ __Notes:__ Issues with the output should be reported on the babel [issue tracker
|
|
22
22
|
|
23
23
|
<h2 align="center">Install</h2>
|
24
24
|
|
25
|
-
> webpack
|
25
|
+
> webpack 4.x | babel-loader 8.x | babel 7.x
|
26
26
|
|
27
27
|
```bash
|
28
|
-
npm install
|
28
|
+
npm install babel-loader @babel/core @babel/preset-env webpack
|
29
29
|
```
|
30
30
|
|
31
|
-
> webpack
|
31
|
+
> webpack 4.x | babel-loader 7.x | babel 6.x
|
32
32
|
|
33
33
|
```bash
|
34
|
-
npm install babel-loader babel-core babel-preset-env webpack
|
34
|
+
npm install babel-loader@7 babel-core babel-preset-env webpack
|
35
35
|
```
|
36
36
|
|
37
37
|
<h2 align="center">Usage</h2>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babel-loader",
|
3
|
-
"version": "8.0.0
|
3
|
+
"version": "8.0.0",
|
4
4
|
"description": "babel module loader for webpack",
|
5
5
|
"files": [
|
6
6
|
"lib"
|
@@ -16,7 +16,7 @@
|
|
16
16
|
"util.promisify": "^1.0.0"
|
17
17
|
},
|
18
18
|
"peerDependencies": {
|
19
|
-
"@babel/core": "^7.0.0
|
19
|
+
"@babel/core": "^7.0.0",
|
20
20
|
"webpack": ">=2"
|
21
21
|
},
|
22
22
|
"devDependencies": {
|
@@ -53,9 +53,6 @@
|
|
53
53
|
"test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && yarn run test-only",
|
54
54
|
"test-only": "nyc ava"
|
55
55
|
},
|
56
|
-
"publishConfig": {
|
57
|
-
"tag": "next"
|
58
|
-
},
|
59
56
|
"repository": {
|
60
57
|
"type": "git",
|
61
58
|
"url": "https://github.com/babel/babel-loader.git"
|