@titanpl/packet 2.0.0 → 2.0.2
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 +11 -11
- package/index.js +83 -83
- package/js/titan/builder.js +50 -50
- package/js/titan/bundle.js +164 -164
- package/js/titan/dev.js +19 -8
- package/js/titan/error-box.js +277 -277
- package/package.json +1 -1
- package/ts/titan/bundle.js +227 -227
- package/ts/titan/dev.js +19 -9
- package/ts/titan/error-box.js +277 -277
package/ts/titan/bundle.js
CHANGED
|
@@ -1,227 +1,227 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Bundle.js (TypeScript Version)
|
|
3
|
-
* Handles esbuild bundling with comprehensive error reporting and TypeScript type checking
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import esbuild from 'esbuild';
|
|
7
|
-
import path from 'path';
|
|
8
|
-
import fs from 'fs';
|
|
9
|
-
import { fileURLToPath } from 'url';
|
|
10
|
-
import { createRequire } from 'module';
|
|
11
|
-
import ts from 'typescript';
|
|
12
|
-
import { renderErrorBox, parseEsbuildError } from './error-box.js';
|
|
13
|
-
|
|
14
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
15
|
-
const __dirname = path.dirname(__filename);
|
|
16
|
-
|
|
17
|
-
// Required for resolving node_modules inside ESM
|
|
18
|
-
const require = createRequire(import.meta.url);
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Titan Node Builtin Rewrite Map
|
|
22
|
-
*/
|
|
23
|
-
const NODE_BUILTIN_MAP = {
|
|
24
|
-
"fs": "@titanpl/node/fs",
|
|
25
|
-
"node:fs": "@titanpl/node/fs",
|
|
26
|
-
"path": "@titanpl/node/path",
|
|
27
|
-
"node:path": "@titanpl/node/path",
|
|
28
|
-
"os": "@titanpl/node/os",
|
|
29
|
-
"node:os": "@titanpl/node/os",
|
|
30
|
-
"crypto": "@titanpl/node/crypto",
|
|
31
|
-
"node:crypto": "@titanpl/node/crypto",
|
|
32
|
-
"process": "@titanpl/node/process",
|
|
33
|
-
"util": "@titanpl/node/util",
|
|
34
|
-
"node:util": "@titanpl/node/util",
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
const titanNodeCompatPlugin = {
|
|
38
|
-
name: "titan-node-compat",
|
|
39
|
-
setup(build) {
|
|
40
|
-
build.onResolve({ filter: /.*/ }, args => {
|
|
41
|
-
if (NODE_BUILTIN_MAP[args.path]) {
|
|
42
|
-
try {
|
|
43
|
-
const resolved = require.resolve(NODE_BUILTIN_MAP[args.path]);
|
|
44
|
-
return { path: resolved };
|
|
45
|
-
} catch (e) {
|
|
46
|
-
throw new Error(`[TitanPL] Failed to resolve Node shim: ${NODE_BUILTIN_MAP[args.path]}`);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
});
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
function getTitanVersion() {
|
|
54
|
-
try {
|
|
55
|
-
const pkgPath = require.resolve("@titanpl/cli/package.json");
|
|
56
|
-
return JSON.parse(fs.readFileSync(pkgPath, "utf-8")).version;
|
|
57
|
-
} catch (e) {
|
|
58
|
-
return "1.0.0";
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export class BundleError extends Error {
|
|
63
|
-
constructor(message, errors = [], warnings = []) {
|
|
64
|
-
super(message);
|
|
65
|
-
this.name = 'BundleError';
|
|
66
|
-
this.errors = errors;
|
|
67
|
-
this.warnings = warnings;
|
|
68
|
-
this.isBundleError = true;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* Run TypeScript type checking
|
|
74
|
-
*/
|
|
75
|
-
async function checkTypes(root) {
|
|
76
|
-
const tsconfigPath = path.join(root, 'tsconfig.json');
|
|
77
|
-
if (!fs.existsSync(tsconfigPath)) return;
|
|
78
|
-
|
|
79
|
-
const configFile = ts.readConfigFile(tsconfigPath, ts.sys.readFile);
|
|
80
|
-
if (configFile.error) {
|
|
81
|
-
throw new BundleError("Failed to load tsconfig.json", [configFile.error]);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
const parsedConfig = ts.parseJsonConfigFileContent(
|
|
85
|
-
configFile.config,
|
|
86
|
-
ts.sys,
|
|
87
|
-
root
|
|
88
|
-
);
|
|
89
|
-
|
|
90
|
-
const program = ts.createProgram(parsedConfig.fileNames, parsedConfig.options);
|
|
91
|
-
const diagnostics = ts.getPreEmitDiagnostics(program);
|
|
92
|
-
|
|
93
|
-
if (diagnostics.length > 0) {
|
|
94
|
-
const errors = diagnostics.map(d => {
|
|
95
|
-
const message = ts.flattenDiagnosticMessageText(d.messageText, '\n');
|
|
96
|
-
if (d.file) {
|
|
97
|
-
const { line, character } = d.file.getLineAndCharacterOfPosition(d.start);
|
|
98
|
-
return {
|
|
99
|
-
title: 'TypeScript Error',
|
|
100
|
-
message: message,
|
|
101
|
-
file: d.file.fileName,
|
|
102
|
-
line: line + 1,
|
|
103
|
-
column: character + 1,
|
|
104
|
-
location: `at ${d.file.fileName}:${line + 1}:${character + 1}`,
|
|
105
|
-
codeFrame: `${line + 1} | ${d.file.text.split('\n')[line]}\n${' '.repeat(String(line + 1).length)} | ${' '.repeat(character)}^`
|
|
106
|
-
};
|
|
107
|
-
}
|
|
108
|
-
return { title: 'TypeScript Error', message: message };
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
throw new BundleError(`TypeScript checking failed with ${diagnostics.length} error(s)`, errors);
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
async function validateEntryPoint(entryPoint) {
|
|
116
|
-
const absPath = path.resolve(entryPoint);
|
|
117
|
-
if (!fs.existsSync(absPath)) {
|
|
118
|
-
throw new BundleError(`Entry point does not exist: ${entryPoint}`, [{ text: `Cannot find file: ${absPath}`, location: { file: entryPoint } }]);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Bundles a single file
|
|
124
|
-
*/
|
|
125
|
-
export async function bundleFile(options) {
|
|
126
|
-
const { entryPoint, outfile, format = 'iife', globalName = '__titan_exports', target = 'es2020' } = options;
|
|
127
|
-
|
|
128
|
-
await validateEntryPoint(entryPoint);
|
|
129
|
-
|
|
130
|
-
const outDir = path.dirname(outfile);
|
|
131
|
-
if (!fs.existsSync(outDir)) fs.mkdirSync(outDir, { recursive: true });
|
|
132
|
-
|
|
133
|
-
try {
|
|
134
|
-
const result = await esbuild.build({
|
|
135
|
-
entryPoints: [entryPoint],
|
|
136
|
-
bundle: true,
|
|
137
|
-
outfile,
|
|
138
|
-
format,
|
|
139
|
-
globalName,
|
|
140
|
-
platform: 'node',
|
|
141
|
-
target,
|
|
142
|
-
logLevel: 'silent',
|
|
143
|
-
plugins: [titanNodeCompatPlugin],
|
|
144
|
-
banner: { js: "var Titan = t;" },
|
|
145
|
-
footer: options.footer || {}
|
|
146
|
-
});
|
|
147
|
-
|
|
148
|
-
if (result.errors?.length) {
|
|
149
|
-
throw new BundleError(`Build failed`, result.errors);
|
|
150
|
-
}
|
|
151
|
-
} catch (err) {
|
|
152
|
-
if (err.errors) throw new BundleError(`Build failed`, err.errors);
|
|
153
|
-
throw err;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/**
|
|
158
|
-
* Main TS Bundler
|
|
159
|
-
*/
|
|
160
|
-
export async function bundle(options = {}) {
|
|
161
|
-
const root = options.root || process.cwd();
|
|
162
|
-
const outDir = options.outDir || path.join(root, 'dist');
|
|
163
|
-
const titanVersion = getTitanVersion();
|
|
164
|
-
|
|
165
|
-
// 1. Mandatory Type Check for TS apps
|
|
166
|
-
try {
|
|
167
|
-
await checkTypes(root);
|
|
168
|
-
} catch (error) {
|
|
169
|
-
console.error();
|
|
170
|
-
if (error.isBundleError && error.errors?.length) {
|
|
171
|
-
for (let i = 0; i < error.errors.length; i++) {
|
|
172
|
-
const errorInfo = error.errors[i];
|
|
173
|
-
errorInfo.titanVersion = titanVersion;
|
|
174
|
-
console.error(renderErrorBox(errorInfo));
|
|
175
|
-
console.error();
|
|
176
|
-
}
|
|
177
|
-
} else {
|
|
178
|
-
console.error(renderErrorBox({ title: 'TypeScript Error', message: error.message, titanVersion }));
|
|
179
|
-
}
|
|
180
|
-
throw new Error('__TITAN_BUNDLE_FAILED__');
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
// 2. Bundle Actions
|
|
184
|
-
const actionsDir = path.join(root, 'app', 'actions');
|
|
185
|
-
const bundleDir = path.join(outDir, 'actions');
|
|
186
|
-
|
|
187
|
-
if (fs.existsSync(bundleDir)) fs.rmSync(bundleDir, { recursive: true, force: true });
|
|
188
|
-
fs.mkdirSync(bundleDir, { recursive: true });
|
|
189
|
-
|
|
190
|
-
if (!fs.existsSync(actionsDir)) return;
|
|
191
|
-
|
|
192
|
-
const files = fs.readdirSync(actionsDir).filter(f => (f.endsWith('.ts') || f.endsWith('.js')) && !f.endsWith('.d.ts'));
|
|
193
|
-
|
|
194
|
-
for (const file of files) {
|
|
195
|
-
const actionName = path.basename(file, path.extname(file));
|
|
196
|
-
const entryPoint = path.join(actionsDir, file);
|
|
197
|
-
const outfile = path.join(bundleDir, actionName + ".jsbundle");
|
|
198
|
-
|
|
199
|
-
try {
|
|
200
|
-
await bundleFile({
|
|
201
|
-
entryPoint,
|
|
202
|
-
outfile,
|
|
203
|
-
footer: {
|
|
204
|
-
js: `
|
|
205
|
-
(function () {
|
|
206
|
-
const fn = __titan_exports["${actionName}"] || __titan_exports.default;
|
|
207
|
-
if (typeof fn !== "function") throw new Error("[TitanPL] Action '${actionName}' not found or not a function");
|
|
208
|
-
globalThis["${actionName}"] = globalThis.defineAction(fn);
|
|
209
|
-
})();`
|
|
210
|
-
}
|
|
211
|
-
});
|
|
212
|
-
} catch (error) {
|
|
213
|
-
console.error();
|
|
214
|
-
if (error.isBundleError && error.errors?.length) {
|
|
215
|
-
for (const err of error.errors) {
|
|
216
|
-
const errorInfo = parseEsbuildError(err);
|
|
217
|
-
errorInfo.titanVersion = titanVersion;
|
|
218
|
-
console.error(renderErrorBox(errorInfo));
|
|
219
|
-
console.error();
|
|
220
|
-
}
|
|
221
|
-
} else {
|
|
222
|
-
console.error(renderErrorBox({ title: 'Build Error', message: error.message, titanVersion }));
|
|
223
|
-
}
|
|
224
|
-
throw new Error('__TITAN_BUNDLE_FAILED__');
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Bundle.js (TypeScript Version)
|
|
3
|
+
* Handles esbuild bundling with comprehensive error reporting and TypeScript type checking
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import esbuild from 'esbuild';
|
|
7
|
+
import path from 'path';
|
|
8
|
+
import fs from 'fs';
|
|
9
|
+
import { fileURLToPath } from 'url';
|
|
10
|
+
import { createRequire } from 'module';
|
|
11
|
+
import ts from 'typescript';
|
|
12
|
+
import { renderErrorBox, parseEsbuildError } from './error-box.js';
|
|
13
|
+
|
|
14
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
15
|
+
const __dirname = path.dirname(__filename);
|
|
16
|
+
|
|
17
|
+
// Required for resolving node_modules inside ESM
|
|
18
|
+
const require = createRequire(import.meta.url);
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Titan Node Builtin Rewrite Map
|
|
22
|
+
*/
|
|
23
|
+
const NODE_BUILTIN_MAP = {
|
|
24
|
+
"fs": "@titanpl/node/fs",
|
|
25
|
+
"node:fs": "@titanpl/node/fs",
|
|
26
|
+
"path": "@titanpl/node/path",
|
|
27
|
+
"node:path": "@titanpl/node/path",
|
|
28
|
+
"os": "@titanpl/node/os",
|
|
29
|
+
"node:os": "@titanpl/node/os",
|
|
30
|
+
"crypto": "@titanpl/node/crypto",
|
|
31
|
+
"node:crypto": "@titanpl/node/crypto",
|
|
32
|
+
"process": "@titanpl/node/process",
|
|
33
|
+
"util": "@titanpl/node/util",
|
|
34
|
+
"node:util": "@titanpl/node/util",
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
const titanNodeCompatPlugin = {
|
|
38
|
+
name: "titan-node-compat",
|
|
39
|
+
setup(build) {
|
|
40
|
+
build.onResolve({ filter: /.*/ }, args => {
|
|
41
|
+
if (NODE_BUILTIN_MAP[args.path]) {
|
|
42
|
+
try {
|
|
43
|
+
const resolved = require.resolve(NODE_BUILTIN_MAP[args.path]);
|
|
44
|
+
return { path: resolved };
|
|
45
|
+
} catch (e) {
|
|
46
|
+
throw new Error(`[TitanPL] Failed to resolve Node shim: ${NODE_BUILTIN_MAP[args.path]}`);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
function getTitanVersion() {
|
|
54
|
+
try {
|
|
55
|
+
const pkgPath = require.resolve("@titanpl/cli/package.json");
|
|
56
|
+
return JSON.parse(fs.readFileSync(pkgPath, "utf-8")).version;
|
|
57
|
+
} catch (e) {
|
|
58
|
+
return "1.0.0";
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export class BundleError extends Error {
|
|
63
|
+
constructor(message, errors = [], warnings = []) {
|
|
64
|
+
super(message);
|
|
65
|
+
this.name = 'BundleError';
|
|
66
|
+
this.errors = errors;
|
|
67
|
+
this.warnings = warnings;
|
|
68
|
+
this.isBundleError = true;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Run TypeScript type checking
|
|
74
|
+
*/
|
|
75
|
+
async function checkTypes(root) {
|
|
76
|
+
const tsconfigPath = path.join(root, 'tsconfig.json');
|
|
77
|
+
if (!fs.existsSync(tsconfigPath)) return;
|
|
78
|
+
|
|
79
|
+
const configFile = ts.readConfigFile(tsconfigPath, ts.sys.readFile);
|
|
80
|
+
if (configFile.error) {
|
|
81
|
+
throw new BundleError("Failed to load tsconfig.json", [configFile.error]);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const parsedConfig = ts.parseJsonConfigFileContent(
|
|
85
|
+
configFile.config,
|
|
86
|
+
ts.sys,
|
|
87
|
+
root
|
|
88
|
+
);
|
|
89
|
+
|
|
90
|
+
const program = ts.createProgram(parsedConfig.fileNames, parsedConfig.options);
|
|
91
|
+
const diagnostics = ts.getPreEmitDiagnostics(program);
|
|
92
|
+
|
|
93
|
+
if (diagnostics.length > 0) {
|
|
94
|
+
const errors = diagnostics.map(d => {
|
|
95
|
+
const message = ts.flattenDiagnosticMessageText(d.messageText, '\n');
|
|
96
|
+
if (d.file) {
|
|
97
|
+
const { line, character } = d.file.getLineAndCharacterOfPosition(d.start);
|
|
98
|
+
return {
|
|
99
|
+
title: 'TypeScript Error',
|
|
100
|
+
message: message,
|
|
101
|
+
file: d.file.fileName,
|
|
102
|
+
line: line + 1,
|
|
103
|
+
column: character + 1,
|
|
104
|
+
location: `at ${d.file.fileName}:${line + 1}:${character + 1}`,
|
|
105
|
+
codeFrame: `${line + 1} | ${d.file.text.split('\n')[line]}\n${' '.repeat(String(line + 1).length)} | ${' '.repeat(character)}^`
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
return { title: 'TypeScript Error', message: message };
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
throw new BundleError(`TypeScript checking failed with ${diagnostics.length} error(s)`, errors);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
async function validateEntryPoint(entryPoint) {
|
|
116
|
+
const absPath = path.resolve(entryPoint);
|
|
117
|
+
if (!fs.existsSync(absPath)) {
|
|
118
|
+
throw new BundleError(`Entry point does not exist: ${entryPoint}`, [{ text: `Cannot find file: ${absPath}`, location: { file: entryPoint } }]);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Bundles a single file
|
|
124
|
+
*/
|
|
125
|
+
export async function bundleFile(options) {
|
|
126
|
+
const { entryPoint, outfile, format = 'iife', globalName = '__titan_exports', target = 'es2020' } = options;
|
|
127
|
+
|
|
128
|
+
await validateEntryPoint(entryPoint);
|
|
129
|
+
|
|
130
|
+
const outDir = path.dirname(outfile);
|
|
131
|
+
if (!fs.existsSync(outDir)) fs.mkdirSync(outDir, { recursive: true });
|
|
132
|
+
|
|
133
|
+
try {
|
|
134
|
+
const result = await esbuild.build({
|
|
135
|
+
entryPoints: [entryPoint],
|
|
136
|
+
bundle: true,
|
|
137
|
+
outfile,
|
|
138
|
+
format,
|
|
139
|
+
globalName,
|
|
140
|
+
platform: 'node',
|
|
141
|
+
target,
|
|
142
|
+
logLevel: 'silent',
|
|
143
|
+
plugins: [titanNodeCompatPlugin],
|
|
144
|
+
banner: { js: "var Titan = t;" },
|
|
145
|
+
footer: options.footer || {}
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
if (result.errors?.length) {
|
|
149
|
+
throw new BundleError(`Build failed`, result.errors);
|
|
150
|
+
}
|
|
151
|
+
} catch (err) {
|
|
152
|
+
if (err.errors) throw new BundleError(`Build failed`, err.errors);
|
|
153
|
+
throw err;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Main TS Bundler
|
|
159
|
+
*/
|
|
160
|
+
export async function bundle(options = {}) {
|
|
161
|
+
const root = options.root || process.cwd();
|
|
162
|
+
const outDir = options.outDir || path.join(root, 'dist');
|
|
163
|
+
const titanVersion = getTitanVersion();
|
|
164
|
+
|
|
165
|
+
// 1. Mandatory Type Check for TS apps
|
|
166
|
+
try {
|
|
167
|
+
await checkTypes(root);
|
|
168
|
+
} catch (error) {
|
|
169
|
+
console.error();
|
|
170
|
+
if (error.isBundleError && error.errors?.length) {
|
|
171
|
+
for (let i = 0; i < error.errors.length; i++) {
|
|
172
|
+
const errorInfo = error.errors[i];
|
|
173
|
+
errorInfo.titanVersion = titanVersion;
|
|
174
|
+
console.error(renderErrorBox(errorInfo));
|
|
175
|
+
console.error();
|
|
176
|
+
}
|
|
177
|
+
} else {
|
|
178
|
+
console.error(renderErrorBox({ title: 'TypeScript Error', message: error.message, titanVersion }));
|
|
179
|
+
}
|
|
180
|
+
throw new Error('__TITAN_BUNDLE_FAILED__');
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
// 2. Bundle Actions
|
|
184
|
+
const actionsDir = path.join(root, 'app', 'actions');
|
|
185
|
+
const bundleDir = path.join(outDir, 'actions');
|
|
186
|
+
|
|
187
|
+
if (fs.existsSync(bundleDir)) fs.rmSync(bundleDir, { recursive: true, force: true });
|
|
188
|
+
fs.mkdirSync(bundleDir, { recursive: true });
|
|
189
|
+
|
|
190
|
+
if (!fs.existsSync(actionsDir)) return;
|
|
191
|
+
|
|
192
|
+
const files = fs.readdirSync(actionsDir).filter(f => (f.endsWith('.ts') || f.endsWith('.js')) && !f.endsWith('.d.ts'));
|
|
193
|
+
|
|
194
|
+
for (const file of files) {
|
|
195
|
+
const actionName = path.basename(file, path.extname(file));
|
|
196
|
+
const entryPoint = path.join(actionsDir, file);
|
|
197
|
+
const outfile = path.join(bundleDir, actionName + ".jsbundle");
|
|
198
|
+
|
|
199
|
+
try {
|
|
200
|
+
await bundleFile({
|
|
201
|
+
entryPoint,
|
|
202
|
+
outfile,
|
|
203
|
+
footer: {
|
|
204
|
+
js: `
|
|
205
|
+
(function () {
|
|
206
|
+
const fn = __titan_exports["${actionName}"] || __titan_exports.default;
|
|
207
|
+
if (typeof fn !== "function") throw new Error("[TitanPL] Action '${actionName}' not found or not a function");
|
|
208
|
+
globalThis["${actionName}"] = globalThis.defineAction(fn);
|
|
209
|
+
})();`
|
|
210
|
+
}
|
|
211
|
+
});
|
|
212
|
+
} catch (error) {
|
|
213
|
+
console.error();
|
|
214
|
+
if (error.isBundleError && error.errors?.length) {
|
|
215
|
+
for (const err of error.errors) {
|
|
216
|
+
const errorInfo = parseEsbuildError(err);
|
|
217
|
+
errorInfo.titanVersion = titanVersion;
|
|
218
|
+
console.error(renderErrorBox(errorInfo));
|
|
219
|
+
console.error();
|
|
220
|
+
}
|
|
221
|
+
} else {
|
|
222
|
+
console.error(renderErrorBox({ title: 'Build Error', message: error.message, titanVersion }));
|
|
223
|
+
}
|
|
224
|
+
throw new Error('__TITAN_BUNDLE_FAILED__');
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
package/ts/titan/dev.js
CHANGED
|
@@ -25,6 +25,11 @@ function getTitanVersion() {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
function getEngineBinaryPath(root) {
|
|
28
|
+
// First: check if the CLI pre-resolved this for us (correct module context)
|
|
29
|
+
if (process.env.TITAN_ENGINE_BINARY && fs.existsSync(process.env.TITAN_ENGINE_BINARY)) {
|
|
30
|
+
return process.env.TITAN_ENGINE_BINARY;
|
|
31
|
+
}
|
|
32
|
+
|
|
28
33
|
const platform = os.platform();
|
|
29
34
|
const arch = os.arch();
|
|
30
35
|
const binName = platform === 'win32' ? 'titan-server.exe' : 'titan-server';
|
|
@@ -82,23 +87,28 @@ async function killServer() {
|
|
|
82
87
|
if (!serverProcess) return;
|
|
83
88
|
|
|
84
89
|
return new Promise((resolve) => {
|
|
85
|
-
|
|
90
|
+
if (serverProcess.killed || serverProcess.exitCode !== null) {
|
|
86
91
|
serverProcess = null;
|
|
87
92
|
resolve();
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
let isDone = false;
|
|
97
|
+
const onExit = () => {
|
|
98
|
+
if (isDone) return;
|
|
99
|
+
isDone = true;
|
|
100
|
+
serverProcess = null;
|
|
101
|
+
setTimeout(resolve, 300); // Grace period for OS socket release
|
|
88
102
|
};
|
|
89
103
|
|
|
90
104
|
serverProcess.on('exit', onExit);
|
|
105
|
+
serverProcess.on('error', onExit);
|
|
91
106
|
|
|
92
|
-
|
|
93
|
-
try {
|
|
94
|
-
execSync(`taskkill /pid ${serverProcess.pid} /f /t`, { stdio: 'ignore' });
|
|
95
|
-
} catch (e) { }
|
|
96
|
-
} else {
|
|
107
|
+
try {
|
|
97
108
|
serverProcess.kill('SIGKILL');
|
|
98
|
-
}
|
|
109
|
+
} catch (e) { }
|
|
99
110
|
|
|
100
|
-
//
|
|
101
|
-
setTimeout(onExit, 500);
|
|
111
|
+
setTimeout(onExit, 800); // Fallback
|
|
102
112
|
});
|
|
103
113
|
}
|
|
104
114
|
|