webpack-federation-types-plugin 1.2.3 → 1.2.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.
@@ -152,7 +152,7 @@ class FederationTypesPlugin {
152
152
  axios
153
153
  .get(moduleDeclarationFileUrl)
154
154
  .catch((error) => {
155
- logger.error(`Failed to get ${moduleDeclarationFileUrl} ${error.message}`)
155
+ logger.warn(`Failed to get ${moduleDeclarationFileUrl} ${error.message}`)
156
156
  })
157
157
  .then((declarationFileResponse) => {
158
158
  if (!declarationFileResponse) return
@@ -165,7 +165,7 @@ class FederationTypesPlugin {
165
165
  .catch((error) => logger.error(`Failed to write declaration file: ${decFilePath}`, error))
166
166
  })
167
167
  .catch((error) => {
168
- logger.error(`Failed to get ${moduleDeclarationFileUrl} ${error.message}`)
168
+ logger.warn(`Failed to get ${moduleDeclarationFileUrl} ${error.message}`)
169
169
  })
170
170
  })
171
171
  })
package/README.md CHANGED
@@ -1,17 +1,23 @@
1
1
  # webpack-federation-types-plugin
2
2
 
3
- This plugin adds type declaration for remote modules.
3
+ This plugin generates TypeScript type declaration files for the modules that are exposed by a remote application.
4
+ With this plugin, you can get type definitions for your modules and use them in your consuming applications without having to manually import and maintain them.
5
+
4
6
  It compiles the exposed files into type declaration files and shares them as public files
5
- On the consumer side this plugin will fetch the remote types declaration files and will add them to the "node_modules/@types" directory
7
+ On the consumer side, the plugin fetches the remote types declaration files and adds them to the "node_modules/@types" directory. This is the standard location for TypeScript type definitions that are used by the consuming application. By placing the generated type declaration files in this directory, the plugin makes them available to the consuming application without the need for any additional configuration.
6
8
 
7
9
  ## Installation
8
10
 
11
+ You can install the plugin by running the following command in your terminal:
12
+
9
13
  `npm i --save-dev webpack-federation-types-plugin`
10
14
 
11
15
  `yarn add --dev webpack-federation-types-plugin`
12
16
 
13
17
  ## Usage
14
18
 
19
+ After installing the plugin, you can use it in your webpack configuration file as follows:
20
+
15
21
  ```javascript
16
22
  const FederationTypesPlugin = require("webpack-federation-types-plugin")
17
23
 
@@ -25,6 +31,8 @@ module.exports = {
25
31
 
26
32
  ## Plugin Options
27
33
 
34
+ The plugin takes an options object with the following properties:
35
+
28
36
  ##### exposeTypes
29
37
 
30
38
  Type: boolean
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webpack-federation-types-plugin",
3
3
  "description": "This plugin adds type definitions for remote modules",
4
- "version": "1.2.3",
4
+ "version": "1.2.5",
5
5
  "main": "FederationTypesPlugin.js",
6
6
  "types": "types.d.ts",
7
7
  "scripts": {