@genesislcap/webpack-builder 14.431.0 → 14.432.1-FUI-2489.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.
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="utf-8" />
@@ -8,6 +8,10 @@
8
8
  <h1>{{htmlWebpackPlugin.options.title}}</h1>
9
9
  <h3>Module Federation Details</h3>
10
10
  <pre>{{htmlWebpackPlugin.options.moduleFederationDetails}}</pre>
11
- Read about <a href="https://webpack.js.org/concepts/module-federation/" target="_blank">Module Federation</a> in Webpack 5.
11
+ Read about
12
+ <a href="https://webpack.js.org/concepts/module-federation/" target="_blank">
13
+ Module Federation
14
+ </a>
15
+ in Webpack 5.
12
16
  </body>
13
- </html>
17
+ </html>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/webpack-builder",
3
3
  "description": "Webpack builder",
4
- "version": "14.431.0",
4
+ "version": "14.432.1-FUI-2489.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "lint:fix": "genx lint --fix"
18
18
  },
19
19
  "dependencies": {
20
- "@genesislcap/build-kit": "14.431.0",
20
+ "@genesislcap/build-kit": "14.432.1-FUI-2489.1",
21
21
  "@pixability-ui/federated-types": "^0.2.0",
22
22
  "@types/webpack-env": "^1.18.4",
23
23
  "camel-case": "^4.1.2",
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "4e523b6a77df321a9c70fcdf7c12a4ffcb98769a"
59
+ "gitHead": "9bae1c5f931d4787041aae3536be9493c11e6312"
60
60
  }
package/public/info.html CHANGED
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="utf-8" />
@@ -8,6 +8,10 @@
8
8
  <h1>{{htmlWebpackPlugin.options.title}}</h1>
9
9
  <h3>Module Federation Details</h3>
10
10
  <pre>{{htmlWebpackPlugin.options.moduleFederationDetails}}</pre>
11
- Read about <a href="https://webpack.js.org/concepts/module-federation/" target="_blank">Module Federation</a> in Webpack 5.
11
+ Read about
12
+ <a href="https://webpack.js.org/concepts/module-federation/" target="_blank">
13
+ Module Federation
14
+ </a>
15
+ in Webpack 5.
12
16
  </body>
13
- </html>
17
+ </html>
package/tsconfig.json CHANGED
@@ -2,20 +2,11 @@
2
2
  "extends": "../../../../tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "declarationDir": "./dist",
5
- "lib": [
6
- "ES2015",
7
- "ES2016",
8
- "ES2017",
9
- "ES2019",
10
- ],
5
+ "lib": ["ES2015", "ES2016", "ES2017", "ES2019"],
11
6
  "module": "commonjs",
12
7
  "outDir": "./dist",
13
8
  "rootDir": "./src",
14
- "types": [
15
- "webpack-env",
16
- ]
9
+ "types": ["webpack-env"]
17
10
  },
18
- "include": [
19
- "src/**/*"
20
- ]
11
+ "include": ["src/**/*"]
21
12
  }