@modern-js/core 1.10.2 → 1.10.3
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 +9 -0
- package/dist/config/types/index.d.ts +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @modern-js/core
|
|
2
2
|
|
|
3
|
+
## 1.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a37960018: refactor: modify deploy microFrontend type
|
|
8
|
+
- Updated dependencies [b8cfc42cd]
|
|
9
|
+
- Updated dependencies [804a5bb8a]
|
|
10
|
+
- @modern-js/utils@1.7.4
|
|
11
|
+
|
|
3
12
|
## 1.10.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -133,7 +133,7 @@ export interface MicroFrontend {
|
|
|
133
133
|
moduleApp?: string;
|
|
134
134
|
}
|
|
135
135
|
export interface DeployConfig {
|
|
136
|
-
microFrontend?:
|
|
136
|
+
microFrontend?: boolean | MicroFrontend;
|
|
137
137
|
domain?: string | Array<string>;
|
|
138
138
|
domainByEntries?: Record<string, string | Array<string>>;
|
|
139
139
|
}
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.10.
|
|
14
|
+
"version": "1.10.3",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/index.d.ts",
|
|
17
17
|
"main": "./dist/index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@modern-js/load-config": "^1.3.3",
|
|
44
44
|
"@modern-js/plugin": "^1.3.4",
|
|
45
|
-
"@modern-js/utils": "^1.7.
|
|
45
|
+
"@modern-js/utils": "^1.7.4"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@jest/types": "^27.0.6",
|
|
@@ -87,7 +87,8 @@
|
|
|
87
87
|
"files": [
|
|
88
88
|
"src/**/*",
|
|
89
89
|
"tsconfig.json",
|
|
90
|
-
"package.json"
|
|
90
|
+
"package.json",
|
|
91
|
+
"tests/**/*"
|
|
91
92
|
],
|
|
92
93
|
"output": []
|
|
93
94
|
}
|