@module-federation/bridge-react-webpack-plugin 2.1.0 → 2.2.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.
@@ -0,0 +1,20 @@
1
+
2
+ > @module-federation/bridge-react-webpack-plugin@2.2.0 build /home/runner/work/core/core/packages/bridge/bridge-react-webpack-plugin
3
+ > vite build
4
+
5
+ The CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.
6
+ vite v5.4.21 building for production...
7
+ transforming...
8
+ ✓ 92 modules transformed.
9
+ rendering chunks...
10
+ 
11
+ [vite:dts] Start generate declaration files...
12
+ computing gzip size...
13
+ dist/index.cjs.js 56.02 kB │ gzip: 12.26 kB
14
+ [vite:dts] Start rollup declaration files...
15
+ Analysis will use the bundled TypeScript version 5.8.2
16
+ *** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
17
+ [vite:dts] Declaration files built in 11775ms.
18
+ 
19
+ dist/index.es.js 56.00 kB │ gzip: 12.26 kB
20
+ ✓ built in 13.72s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @module-federation/bridge-react-webpack-plugin
2
2
 
3
+ ## 2.2.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c856ec1]
8
+ - Updated dependencies [12240bb]
9
+ - Updated dependencies [e5dd6ef]
10
+ - @module-federation/sdk@2.2.0
11
+
3
12
  ## 2.1.0
4
13
 
5
14
  ### Patch Changes
@@ -157,7 +166,6 @@
157
166
  ### Patch Changes
158
167
 
159
168
  - a7cf276: chore: upgrade NX to 21.2.3, Storybook to 9.0.9, and TypeScript to 5.8.3
160
-
161
169
  - Upgraded NX from 21.0.3 to 21.2.3 with workspace configuration updates
162
170
  - Migrated Storybook from 8.3.5 to 9.0.9 with updated configurations and automigrations
163
171
  - Upgraded TypeScript from 5.7.3 to 5.8.3 with compatibility fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/bridge-react-webpack-plugin",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "semver": "7.6.3",
27
27
  "@types/semver": "7.5.8",
28
- "@module-federation/sdk": "2.1.0"
28
+ "@module-federation/sdk": "2.2.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "typescript": "^5.2.2",
@@ -35,6 +35,7 @@
35
35
  "scripts": {
36
36
  "dev": "vite",
37
37
  "build": "vite build",
38
- "preview": "vite preview"
38
+ "preview": "vite preview",
39
+ "test": "vitest run -c vitest.config.ts"
39
40
  }
40
41
  }
package/vitest.config.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { defineConfig } from 'vitest/config';
2
- import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
2
+ import tsconfigPaths from 'vite-tsconfig-paths';
3
3
  import path from 'path';
4
4
  export default defineConfig({
5
5
  define: {
@@ -9,7 +9,7 @@ export default defineConfig({
9
9
  __VERSION__: '"unknown"',
10
10
  __APP_VERSION__: '"0.0.0"',
11
11
  },
12
- plugins: [nxViteTsPaths()],
12
+ plugins: [tsconfigPaths()],
13
13
  test: {
14
14
  environment: 'jsdom',
15
15
  include: [
package/project.json DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "name": "bridge-react-webpack-plugin",
3
- "$schema": "../../node_modules/nx/schemas/project-schema.json",
4
- "sourceRoot": "packages/bridge/bridge-react-webpack-plugin/src",
5
- "projectType": "library",
6
- "tags": ["type:pkg"],
7
- "targets": {
8
- "build": {
9
- "executor": "nx:run-commands",
10
- "options": {
11
- "commands": [
12
- "npm run build --prefix packages/bridge/bridge-react-webpack-plugin"
13
- ]
14
- }
15
- },
16
- "test": {
17
- "executor": "nx:run-commands",
18
- "options": {
19
- "parallel": false,
20
- "commands": [
21
- {
22
- "command": "vitest run -c packages/bridge/bridge-react-webpack-plugin/vitest.config.ts",
23
- "forwardAllArgs": false
24
- }
25
- ]
26
- }
27
- }
28
- }
29
- }