@genesislcap/webpack-builder 14.441.0 → 14.442.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.
@@ -1 +1 @@
1
- {"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,eAAO,MAAM,KAAK,GAAU,UAAU,QAAQ,kBAqB7C,CAAC"}
1
+ {"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAGxC,eAAO,MAAM,KAAK,GAAU,UAAU,QAAQ,kBAqB7C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;yBAKrC,KAAK,YAAY;AAAvC,wBAuBE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;yBAMrC,KAAK,YAAY;AAAvC,wBAuBE"}
@@ -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.441.0",
4
+ "version": "14.442.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -13,11 +13,11 @@
13
13
  "copyfiles": "copyfiles --verbose public/*.* ./dist",
14
14
  "clean": "rimraf dist temp tsconfig.tsbuildinfo",
15
15
  "dev": "tsc -b ./tsconfig.json -w",
16
- "lint": "genx lint --profile",
17
- "lint:fix": "genx lint --fix"
16
+ "lint": "genx lint -l ox",
17
+ "lint:fix": "genx lint -l ox --fix"
18
18
  },
19
19
  "dependencies": {
20
- "@genesislcap/build-kit": "14.441.0",
20
+ "@genesislcap/build-kit": "14.442.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": "7aa35983955df48854be7f8e1ea6d56eff71c3b5"
59
+ "gitHead": "ad425e4ea17dad7d5b580200f2ca31758896d07f"
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>
@@ -1,6 +1,6 @@
1
1
  import consola from 'consola';
2
- import webpack from 'webpack';
3
2
  import type { Compiler } from 'webpack';
3
+ import webpack from 'webpack';
4
4
 
5
5
  export const build = async (compiler: Compiler) => {
6
6
  const stats = await new Promise<webpack.Stats>((success, error) => {
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { run, resolveBin } from '@genesislcap/build-kit';
2
1
  import type { BuildContext } from '@genesislcap/build-kit';
2
+ import { run, resolveBin } from '@genesislcap/build-kit';
3
3
  import webpack from 'webpack';
4
4
  import { build, dev } from './commands';
5
5
  import { getConfig } from './config';
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
  }