@genesislcap/webpack-builder 14.160.1 → 14.162.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/README.md +22 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -16,9 +16,30 @@ likely contain npm scripts to simply this:
|
|
|
16
16
|
`"dev:webpack:https": "genx dev --https -b webpack"`
|
|
17
17
|
|
|
18
18
|
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
To enable this module in your application, follow the steps below.
|
|
23
|
+
|
|
24
|
+
1. Add `@genesislcap/webpack-builder` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
...
|
|
29
|
+
"dependencies": {
|
|
30
|
+
...
|
|
31
|
+
"@genesislcap/webpack-builder": "latest"
|
|
32
|
+
...
|
|
33
|
+
},
|
|
34
|
+
...
|
|
35
|
+
}
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## [API Docs](./docs/api/index.md)
|
|
39
|
+
|
|
19
40
|
## License
|
|
20
41
|
|
|
21
|
-
Note: this project provides front
|
|
42
|
+
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
|
22
43
|
|
|
23
44
|
### Licensed components
|
|
24
45
|
Genesis low-code platform
|
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.162.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dev": "tsc -b ./tsconfig.json -w"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@genesislcap/build-kit": "14.
|
|
18
|
+
"@genesislcap/build-kit": "14.162.0",
|
|
19
19
|
"@module-federation/dashboard-plugin": "2.6.5",
|
|
20
20
|
"@pixability-ui/federated-types": "^0.2.0",
|
|
21
21
|
"@types/webpack-env": "^1.18.4",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "874e7ee403e4cfab01c6fb2542ae3264c7202831"
|
|
62
62
|
}
|