@modern-js/plugin 1.0.0-rc.17 → 1.0.0-rc.20
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/CHANGELOG.md +28 -0
- package/package.json +40 -40
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# @modern-js/plugin
|
2
2
|
|
3
|
+
## 1.0.0-rc.20
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 224f7fe: fix server route match
|
8
|
+
- 30ac27c: feat: add generator package description
|
9
|
+
- feat: fix bugs
|
10
|
+
- 204c626: feat: initial
|
11
|
+
- 63be0a5: fix: #118 #104
|
12
|
+
|
13
|
+
## 1.0.0-rc.19
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- 224f7fe: fix server route match
|
18
|
+
- 30ac27c: feat: add generator package description
|
19
|
+
- 204c626: feat: initial
|
20
|
+
- 63be0a5: fix: #118 #104
|
21
|
+
|
22
|
+
## 1.0.0-rc.18
|
23
|
+
|
24
|
+
### Patch Changes
|
25
|
+
|
26
|
+
- 224f7fe: fix server route match
|
27
|
+
- 30ac27c: feat: add generator package description
|
28
|
+
- 204c626: feat: initial
|
29
|
+
- 63be0a5: fix: #118 #104
|
30
|
+
|
3
31
|
## 1.0.0-rc.17
|
4
32
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,41 +1,41 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
}
|
2
|
+
"name": "@modern-js/plugin",
|
3
|
+
"version": "1.0.0-rc.20",
|
4
|
+
"jsnext:source": "./src/index.ts",
|
5
|
+
"types": "./dist/types/index.d.ts",
|
6
|
+
"main": "./dist/js/node/index.js",
|
7
|
+
"module": "./dist/js/treeshaking/index.js",
|
8
|
+
"jsnext:modern": "./dist/js/modern/index.js",
|
9
|
+
"exports": {
|
10
|
+
".": {
|
11
|
+
"node": {
|
12
|
+
"import": "./dist/js/modern/index.js",
|
13
|
+
"require": "./dist/js/node/index.js"
|
14
|
+
},
|
15
|
+
"default": "./dist/js/treeshaking/index.js"
|
16
|
+
},
|
17
|
+
"./node": {
|
18
|
+
"default": "./node.js"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"dependencies": {
|
22
|
+
"@babel/runtime": "^7"
|
23
|
+
},
|
24
|
+
"devDependencies": {
|
25
|
+
"@types/jest": "^26",
|
26
|
+
"@types/node": "^14",
|
27
|
+
"typescript": "^4",
|
28
|
+
"@modern-js/plugin-testing": "^1.0.0-rc.20",
|
29
|
+
"@modern-js/module-tools": "^1.0.0-rc.20"
|
30
|
+
},
|
31
|
+
"sideEffects": false,
|
32
|
+
"publishConfig": {
|
33
|
+
"registry": "https://registry.npmjs.org/",
|
34
|
+
"access": "public"
|
35
|
+
},
|
36
|
+
"scripts": {
|
37
|
+
"new": "modern new",
|
38
|
+
"build": "modern build",
|
39
|
+
"test": "modern test --passWithNoTests"
|
40
|
+
}
|
41
|
+
}
|