@vercel/microfrontends 1.3.0 → 1.4.0-canary.1
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 +67 -0
- package/dist/bin/cli.cjs +8 -5
- package/dist/next/config.cjs +42 -2
- package/dist/next/config.cjs.map +1 -1
- package/dist/next/config.js +49 -2
- package/dist/next/config.js.map +1 -1
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/microfrontends",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0-canary.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Defines configuration and utilities for microfrontends development",
|
|
6
6
|
"keywords": [
|
|
@@ -118,10 +118,11 @@
|
|
|
118
118
|
},
|
|
119
119
|
"files": [
|
|
120
120
|
"dist",
|
|
121
|
-
"schema"
|
|
121
|
+
"schema",
|
|
122
|
+
"CHANGELOG.md"
|
|
122
123
|
],
|
|
123
124
|
"dependencies": {
|
|
124
|
-
"@next/env": "15.
|
|
125
|
+
"@next/env": "15.4.0-canary.41",
|
|
125
126
|
"ajv": "^8.17.1",
|
|
126
127
|
"commander": "^12.1.0",
|
|
127
128
|
"cookie": "0.4.0",
|
|
@@ -129,7 +130,8 @@
|
|
|
129
130
|
"http-proxy": "^1.18.1",
|
|
130
131
|
"jsonc-parser": "^3.3.1",
|
|
131
132
|
"nanoid": "^3.3.9",
|
|
132
|
-
"path-to-regexp": "6.2.1"
|
|
133
|
+
"path-to-regexp": "6.2.1",
|
|
134
|
+
"semver": "^7.7.2"
|
|
133
135
|
},
|
|
134
136
|
"devDependencies": {
|
|
135
137
|
"@edge-runtime/jest-environment": "^4.0.0",
|
|
@@ -143,9 +145,10 @@
|
|
|
143
145
|
"@types/node": "20.11.30",
|
|
144
146
|
"@types/react": "18.3.1",
|
|
145
147
|
"@types/react-dom": "18.3.0",
|
|
148
|
+
"@types/semver": "^7.7.0",
|
|
146
149
|
"jest": "^29.7.0",
|
|
147
150
|
"jest-environment-jsdom": "29.2.2",
|
|
148
|
-
"next": "15.
|
|
151
|
+
"next": "15.4.0-canary.41",
|
|
149
152
|
"react": "19.0.0",
|
|
150
153
|
"react-dom": "19.0.0",
|
|
151
154
|
"ts-json-schema-generator": "^1.1.2",
|