@genesislcap/genx 14.436.0-FUI-2489.4 → 14.436.0-FUI-2489.7
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/index.js +1 -1
- package/dist/utils/builder.d.ts.map +1 -1
- package/dist/utils/http.js +1 -1
- package/package.json +13 -11
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const build_kit_1 = require("@genesislcap/build-kit");
|
|
5
5
|
const cac_1 = tslib_1.__importDefault(require("cac"));
|
|
6
6
|
const consola_1 = require("consola");
|
|
7
|
-
const commands_1 = require("./commands");
|
|
8
7
|
const packageJSON = require('../package.json');
|
|
8
|
+
const commands_1 = require("./commands");
|
|
9
9
|
process.on('unhandledRejection', (err) => {
|
|
10
10
|
consola_1.consola.error('[unhandledRejection]', err);
|
|
11
11
|
process.exit(1);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../src/utils/builder.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../src/utils/builder.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAY3D,eAAO,MAAM,cAAc,GAAU,KAAK,YAAY,iBAkBrD,CAAC"}
|
package/dist/utils/http.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.startServer = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
const http_1 = tslib_1.__importDefault(require("http"));
|
|
6
5
|
const consola_1 = tslib_1.__importDefault(require("consola"));
|
|
6
|
+
const http_1 = tslib_1.__importDefault(require("http"));
|
|
7
7
|
const serve_handler_1 = tslib_1.__importDefault(require("serve-handler"));
|
|
8
8
|
const startServer = (port, path) => {
|
|
9
9
|
const server = http_1.default.createServer((request, response) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/genx",
|
|
3
3
|
"description": "Genx CLI",
|
|
4
|
-
"version": "14.436.0-FUI-2489.
|
|
4
|
+
"version": "14.436.0-FUI-2489.7",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=22.0.0"
|
|
@@ -10,20 +10,22 @@
|
|
|
10
10
|
"build": "npm run clean && tsc -b ./tsconfig.json",
|
|
11
11
|
"clean": "rimraf dist temp tsconfig.tsbuildinfo",
|
|
12
12
|
"dev": "tsc -b ./tsconfig.json -w",
|
|
13
|
-
"lint": "genx lint
|
|
14
|
-
"lint:fix": "genx lint --fix"
|
|
13
|
+
"lint": "genx lint",
|
|
14
|
+
"lint:fix": "genx lint --fix",
|
|
15
|
+
"lint:ox": "genx lint -l ox",
|
|
16
|
+
"lint:ox:fix": "genx lint -l ox --fix"
|
|
15
17
|
},
|
|
16
18
|
"bin": {
|
|
17
19
|
"genx": "./bin/genx"
|
|
18
20
|
},
|
|
19
21
|
"dependencies": {
|
|
20
|
-
"@genesislcap/build-kit": "14.436.0-FUI-2489.
|
|
21
|
-
"@genesislcap/eslint-stylelint-builder": "14.436.0-FUI-2489.
|
|
22
|
-
"@genesislcap/rollup-builder": "14.436.0-FUI-2489.
|
|
23
|
-
"@genesislcap/ts-builder": "14.436.0-FUI-2489.
|
|
24
|
-
"@genesislcap/uvu-playwright-builder": "14.436.0-FUI-2489.
|
|
25
|
-
"@genesislcap/vite-builder": "14.436.0-FUI-2489.
|
|
26
|
-
"@genesislcap/webpack-builder": "14.436.0-FUI-2489.
|
|
22
|
+
"@genesislcap/build-kit": "14.436.0-FUI-2489.7",
|
|
23
|
+
"@genesislcap/eslint-stylelint-builder": "14.436.0-FUI-2489.7",
|
|
24
|
+
"@genesislcap/rollup-builder": "14.436.0-FUI-2489.7",
|
|
25
|
+
"@genesislcap/ts-builder": "14.436.0-FUI-2489.7",
|
|
26
|
+
"@genesislcap/uvu-playwright-builder": "14.436.0-FUI-2489.7",
|
|
27
|
+
"@genesislcap/vite-builder": "14.436.0-FUI-2489.7",
|
|
28
|
+
"@genesislcap/webpack-builder": "14.436.0-FUI-2489.7",
|
|
27
29
|
"cac": "^6.7.14",
|
|
28
30
|
"consola": "^3.0.2",
|
|
29
31
|
"serve-handler": "^6.1.5"
|
|
@@ -36,5 +38,5 @@
|
|
|
36
38
|
"publishConfig": {
|
|
37
39
|
"access": "public"
|
|
38
40
|
},
|
|
39
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "0255c3ca76f815c03c5699c5b7364d624ed08272"
|
|
40
42
|
}
|