@module-federation/runtime-tools 0.0.12 → 0.0.14

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,5 +1,22 @@
1
1
  ## [1.0.1-canary.1](https://github.com/module-federation/universe/compare/runtime-1.0.0...runtime-1.0.1-canary.1) (2023-12-06)
2
2
 
3
+ ## 0.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a050645]
8
+ - Updated dependencies [4fc20cc]
9
+ - @module-federation/runtime@0.0.14
10
+ - @module-federation/webpack-bundler-runtime@0.0.14
11
+
12
+ ## 0.0.13
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [804447c]
17
+ - @module-federation/runtime@0.0.13
18
+ - @module-federation/webpack-bundler-runtime@0.0.13
19
+
3
20
  ## 0.0.12
4
21
 
5
22
  ### Patch Changes
package/README.md CHANGED
@@ -1,28 +1,27 @@
1
1
  # `@module-federation/runtime-tools`
2
2
 
3
- Module federation runtime package collection. You can just install it instead of installing all the packages separately.
3
+ Module federation runtime package collection. You can just install it instead of installing all the packages separately.
4
4
 
5
5
  It includes the following packages:
6
6
 
7
- * `@module-federation/runtime`
8
- * `@module-federation/webpack-bundler-runtime`
7
+ - `@module-federation/runtime`
8
+ - `@module-federation/webpack-bundler-runtime`
9
9
 
10
- Usage
10
+ Usage
11
11
 
12
12
  ```bash
13
13
  npm install @module-federation/runtime-tools
14
14
  ```
15
15
 
16
- * import runtime
16
+ - import runtime
17
17
 
18
18
  ```ts
19
- import runtime from '@module-federation/runtime-tools'
20
- import runtime from '@module-federation/runtime-tools/runtime'
21
-
19
+ import runtime from '@module-federation/runtime-tools';
20
+ import runtime from '@module-federation/runtime-tools/runtime';
22
21
  ```
23
22
 
24
- * import webpack bundler runtime
23
+ - import webpack bundler runtime
25
24
 
26
25
  ```ts
27
- import webpackBundlerRuntime from '@module-federation/runtime-tools/webpack-bundler-runtime'
26
+ import webpackBundlerRuntime from '@module-federation/runtime-tools/webpack-bundler-runtime';
28
27
  ```
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/runtime-tools",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "author": "zhanghang <hanric.zhang@gmail.com>",
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/runtime-tools",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "author": "zhanghang <hanric.zhang@gmail.com>",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.esm.js",
@@ -38,7 +38,7 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@module-federation/runtime": "0.0.12",
42
- "@module-federation/webpack-bundler-runtime": "0.0.12"
41
+ "@module-federation/runtime": "0.0.14",
42
+ "@module-federation/webpack-bundler-runtime": "0.0.14"
43
43
  }
44
44
  }