@genesislcap/webpack-builder 14.436.0-FUI-2489.2 → 14.437.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.
- package/dist/public/info.html +3 -7
- package/package.json +3 -3
- package/public/info.html +3 -7
- package/tsconfig.json +12 -3
package/dist/public/info.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
<h1>{{htmlWebpackPlugin.options.title}}</h1>
|
|
9
9
|
<h3>Module Federation Details</h3>
|
|
10
10
|
<pre>{{htmlWebpackPlugin.options.moduleFederationDetails}}</pre>
|
|
11
|
-
Read about
|
|
12
|
-
<a href="https://webpack.js.org/concepts/module-federation/" target="_blank">
|
|
13
|
-
Module Federation
|
|
14
|
-
</a>
|
|
15
|
-
in Webpack 5.
|
|
11
|
+
Read about <a href="https://webpack.js.org/concepts/module-federation/" target="_blank">Module Federation</a> in Webpack 5.
|
|
16
12
|
</body>
|
|
17
|
-
</html>
|
|
13
|
+
</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.
|
|
4
|
+
"version": "14.437.0",
|
|
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.
|
|
20
|
+
"@genesislcap/build-kit": "14.437.0",
|
|
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": "
|
|
59
|
+
"gitHead": "c30c777f0ab5e45f4e931a9cc1200ac85bcace35"
|
|
60
60
|
}
|
package/public/info.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
<h1>{{htmlWebpackPlugin.options.title}}</h1>
|
|
9
9
|
<h3>Module Federation Details</h3>
|
|
10
10
|
<pre>{{htmlWebpackPlugin.options.moduleFederationDetails}}</pre>
|
|
11
|
-
Read about
|
|
12
|
-
<a href="https://webpack.js.org/concepts/module-federation/" target="_blank">
|
|
13
|
-
Module Federation
|
|
14
|
-
</a>
|
|
15
|
-
in Webpack 5.
|
|
11
|
+
Read about <a href="https://webpack.js.org/concepts/module-federation/" target="_blank">Module Federation</a> in Webpack 5.
|
|
16
12
|
</body>
|
|
17
|
-
</html>
|
|
13
|
+
</html>
|
package/tsconfig.json
CHANGED
|
@@ -2,11 +2,20 @@
|
|
|
2
2
|
"extends": "../../../../tsconfig.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
4
|
"declarationDir": "./dist",
|
|
5
|
-
"lib": [
|
|
5
|
+
"lib": [
|
|
6
|
+
"ES2015",
|
|
7
|
+
"ES2016",
|
|
8
|
+
"ES2017",
|
|
9
|
+
"ES2019",
|
|
10
|
+
],
|
|
6
11
|
"module": "commonjs",
|
|
7
12
|
"outDir": "./dist",
|
|
8
13
|
"rootDir": "./src",
|
|
9
|
-
"types": [
|
|
14
|
+
"types": [
|
|
15
|
+
"webpack-env",
|
|
16
|
+
]
|
|
10
17
|
},
|
|
11
|
-
"include": [
|
|
18
|
+
"include": [
|
|
19
|
+
"src/**/*"
|
|
20
|
+
]
|
|
12
21
|
}
|