@modern-js/core 1.0.0-alpha.5 → 1.0.0-rc.5

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 CHANGED
@@ -1,10 +1,35 @@
1
1
  # @modern-js/core
2
2
 
3
- ## 1.0.0-alpha.3
3
+ ## 1.0.0-rc.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 224f7fe: fix server route match
8
+ - 204c626: feat: initial
9
+ - Updated dependencies [224f7fe]
10
+ - Updated dependencies [204c626]
11
+ - @modern-js/load-config@1.0.0-rc.5
12
+ - @modern-js/plugin@1.0.0-rc.5
13
+ - @modern-js/utils@1.0.0-rc.5
14
+
15
+ ## 1.0.0-rc.4
16
+
17
+ ### Patch Changes
18
+
19
+ - fix server route match
20
+ - 204c626: feat: initial
21
+ - Updated dependencies [undefined]
22
+ - Updated dependencies [204c626]
23
+ - @modern-js/load-config@1.0.0-rc.4
24
+ - @modern-js/plugin@1.0.0-rc.4
25
+ - @modern-js/utils@1.0.0-rc.4
26
+
27
+ ## 1.0.0-rc.3
28
+
4
29
  ### Patch Changes
5
30
 
6
31
  - feat: initial
7
32
  - Updated dependencies [undefined]
8
- - @modern-js/load-config@1.0.0-alpha.3
9
- - @modern-js/plugin@1.0.0-alpha.3
10
- - @modern-js/utils@1.0.0-alpha.3
33
+ - @modern-js/load-config@1.0.0-rc.3
34
+ - @modern-js/plugin@1.0.0-rc.3
35
+ - @modern-js/utils@1.0.0-rc.3
@@ -75,9 +75,6 @@ const devDefaults = {
75
75
  assetPrefix: false
76
76
  };
77
77
  const deployDefaults = {
78
- microFrontend: {
79
- enableHtmlEntry: false
80
- },
81
78
  domain: '',
82
79
  domainByEntries: undefined
83
80
  };
@@ -81,9 +81,6 @@ const devDefaults = {
81
81
  assetPrefix: false
82
82
  };
83
83
  const deployDefaults = {
84
- microFrontend: {
85
- enableHtmlEntry: false
86
- },
87
84
  domain: '',
88
85
  domainByEntries: undefined
89
86
  };
@@ -7,9 +7,6 @@ export declare const defaults: {
7
7
  assetPrefix: boolean;
8
8
  };
9
9
  deploy: {
10
- microFrontend: {
11
- enableHtmlEntry: boolean;
12
- };
13
10
  domain: string;
14
11
  domainByEntries: undefined;
15
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modern-js/core",
3
- "version": "1.0.0-alpha.5",
3
+ "version": "1.0.0-rc.5",
4
4
  "jsnext:source": "./src/index.ts",
5
5
  "types": "./dist/types/index.d.ts",
6
6
  "main": "./dist/js/node/index.js",
@@ -27,9 +27,9 @@
27
27
  "dependencies": {
28
28
  "@babel/runtime": "^7",
29
29
  "@babel/code-frame": "^7.14.5",
30
- "@modern-js/load-config": "1.0.0-alpha.5",
31
- "@modern-js/plugin": "1.0.0-alpha.5",
32
- "@modern-js/utils": "1.0.0-alpha.5",
30
+ "@modern-js/load-config": "^1.0.0-rc.5",
31
+ "@modern-js/plugin": "^1.0.0-rc.5",
32
+ "@modern-js/utils": "^1.0.0-rc.5",
33
33
  "address": "^1.1.2",
34
34
  "ajv": "^8.6.2",
35
35
  "ajv-keywords": "^5.0.0",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/babel__code-frame": "^7.0.3",
49
- "@modern-js/types": "1.0.0-alpha.5",
49
+ "@modern-js/types": "^1.0.0-rc.5",
50
50
  "@types/jest": "^26",
51
51
  "@types/lodash.clonedeep": "^4.5.6",
52
52
  "@types/lodash.mergewith": "^4.6.6",
@@ -55,8 +55,8 @@
55
55
  "@types/react-dom": "^17",
56
56
  "@types/signale": "^1.4.2",
57
57
  "typescript": "^4",
58
- "@modern-js/plugin-testing": "^1.0.0-alpha.3",
59
- "@modern-js/module-tools": "^1.0.0-alpha.3"
58
+ "@modern-js/plugin-testing": "^1.0.0-rc.5",
59
+ "@modern-js/module-tools": "^1.0.0-rc.5"
60
60
  },
61
61
  "sideEffects": false,
62
62
  "modernConfig": {
@@ -64,6 +64,10 @@
64
64
  "packageMode": "node-js"
65
65
  }
66
66
  },
67
+ "publishConfig": {
68
+ "registry": "https://registry.npmjs.org/",
69
+ "access": "public"
70
+ },
67
71
  "scripts": {
68
72
  "new": "modern new",
69
73
  "build": "modern build",
@@ -75,9 +75,6 @@ const serverDefaults: ServerConfig = {
75
75
  const devDefaults = { assetPrefix: false };
76
76
 
77
77
  const deployDefaults = {
78
- microFrontend: {
79
- enableHtmlEntry: false
80
- },
81
78
  domain: '',
82
79
  domainByEntries: undefined,
83
80
  };