vize 0.0.1-alpha.20 → 0.1.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 +1 -1
- package/bin/vize +1 -29
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +107 -0
- package/dist/cli.js.map +1 -0
- package/dist/config-CVmInrFP.js +126 -0
- package/dist/config-CVmInrFP.js.map +1 -0
- package/dist/config-Cu4Hn1JG.d.ts +422 -0
- package/dist/config-Cu4Hn1JG.d.ts.map +1 -0
- package/dist/config.d.ts +2 -0
- package/dist/config.js +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/package.json +39 -5
- package/src/cli.ts +193 -0
- package/src/config.ts +192 -0
- package/src/index.ts +33 -0
- package/src/types.ts +515 -0
- package/scripts/postinstall.js +0 -138
package/src/types.ts
ADDED
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
// ============================================================================
|
|
2
|
+
// Dynamic config support
|
|
3
|
+
// ============================================================================
|
|
4
|
+
|
|
5
|
+
export type MaybePromise<T> = T | Promise<T>;
|
|
6
|
+
|
|
7
|
+
export interface ConfigEnv {
|
|
8
|
+
mode: string;
|
|
9
|
+
command: "serve" | "build" | "check" | "lint" | "fmt";
|
|
10
|
+
isSsrBuild?: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export type UserConfigExport = VizeConfig | ((env: ConfigEnv) => MaybePromise<VizeConfig>);
|
|
14
|
+
|
|
15
|
+
// ============================================================================
|
|
16
|
+
// Rule severity
|
|
17
|
+
// ============================================================================
|
|
18
|
+
|
|
19
|
+
export type RuleSeverity = "off" | "warn" | "error";
|
|
20
|
+
|
|
21
|
+
export type RuleCategory = "correctness" | "suspicious" | "style" | "perf" | "a11y" | "security";
|
|
22
|
+
|
|
23
|
+
// ============================================================================
|
|
24
|
+
// VizeConfig
|
|
25
|
+
// ============================================================================
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Vize configuration options
|
|
29
|
+
*/
|
|
30
|
+
export interface VizeConfig {
|
|
31
|
+
/**
|
|
32
|
+
* Vue compiler options
|
|
33
|
+
*/
|
|
34
|
+
compiler?: CompilerConfig;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Vite plugin options
|
|
38
|
+
*/
|
|
39
|
+
vite?: VitePluginConfig;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Linter options
|
|
43
|
+
*/
|
|
44
|
+
linter?: LinterConfig;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Type checker options
|
|
48
|
+
*/
|
|
49
|
+
typeChecker?: TypeCheckerConfig;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Formatter options
|
|
53
|
+
*/
|
|
54
|
+
formatter?: FormatterConfig;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* LSP options
|
|
58
|
+
*/
|
|
59
|
+
lsp?: LspConfig;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Musea component gallery options
|
|
63
|
+
*/
|
|
64
|
+
musea?: MuseaConfig;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Global type declarations
|
|
68
|
+
*/
|
|
69
|
+
globalTypes?: GlobalTypesConfig;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// ============================================================================
|
|
73
|
+
// CompilerConfig
|
|
74
|
+
// ============================================================================
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Compiler configuration
|
|
78
|
+
*/
|
|
79
|
+
export interface CompilerConfig {
|
|
80
|
+
/**
|
|
81
|
+
* Compilation mode
|
|
82
|
+
* @default 'module'
|
|
83
|
+
*/
|
|
84
|
+
mode?: "module" | "function";
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Enable Vapor mode compilation
|
|
88
|
+
* @default false
|
|
89
|
+
*/
|
|
90
|
+
vapor?: boolean;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Enable SSR mode
|
|
94
|
+
* @default false
|
|
95
|
+
*/
|
|
96
|
+
ssr?: boolean;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Enable source map generation
|
|
100
|
+
* @default true in development, false in production
|
|
101
|
+
*/
|
|
102
|
+
sourceMap?: boolean;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Prefix template identifiers with _ctx
|
|
106
|
+
* @default false
|
|
107
|
+
*/
|
|
108
|
+
prefixIdentifiers?: boolean;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Hoist static nodes
|
|
112
|
+
* @default true
|
|
113
|
+
*/
|
|
114
|
+
hoistStatic?: boolean;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Cache v-on handlers
|
|
118
|
+
* @default true
|
|
119
|
+
*/
|
|
120
|
+
cacheHandlers?: boolean;
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Enable TypeScript parsing in <script> blocks
|
|
124
|
+
* @default true
|
|
125
|
+
*/
|
|
126
|
+
isTs?: boolean;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Script file extension for generated output
|
|
130
|
+
* @default 'ts'
|
|
131
|
+
*/
|
|
132
|
+
scriptExt?: "ts" | "js";
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Module name for runtime imports
|
|
136
|
+
* @default 'vue'
|
|
137
|
+
*/
|
|
138
|
+
runtimeModuleName?: string;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Global variable name for runtime (IIFE builds)
|
|
142
|
+
* @default 'Vue'
|
|
143
|
+
*/
|
|
144
|
+
runtimeGlobalName?: string;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// ============================================================================
|
|
148
|
+
// VitePluginConfig
|
|
149
|
+
// ============================================================================
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Vite plugin configuration
|
|
153
|
+
*/
|
|
154
|
+
export interface VitePluginConfig {
|
|
155
|
+
/**
|
|
156
|
+
* Files to include in compilation
|
|
157
|
+
* @default /\.vue$/
|
|
158
|
+
*/
|
|
159
|
+
include?: string | RegExp | (string | RegExp)[];
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Files to exclude from compilation
|
|
163
|
+
* @default /node_modules/
|
|
164
|
+
*/
|
|
165
|
+
exclude?: string | RegExp | (string | RegExp)[];
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Glob patterns to scan for .vue files during pre-compilation
|
|
169
|
+
* @default ['**\/*.vue']
|
|
170
|
+
*/
|
|
171
|
+
scanPatterns?: string[];
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Glob patterns to ignore during pre-compilation
|
|
175
|
+
* @default ['node_modules/**', 'dist/**', '.git/**']
|
|
176
|
+
*/
|
|
177
|
+
ignorePatterns?: string[];
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// ============================================================================
|
|
181
|
+
// LinterConfig
|
|
182
|
+
// ============================================================================
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* Linter configuration
|
|
186
|
+
*/
|
|
187
|
+
export interface LinterConfig {
|
|
188
|
+
/**
|
|
189
|
+
* Enable linting
|
|
190
|
+
*/
|
|
191
|
+
enabled?: boolean;
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Rules to enable/disable
|
|
195
|
+
*/
|
|
196
|
+
rules?: Record<string, RuleSeverity>;
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Category-level severity overrides
|
|
200
|
+
*/
|
|
201
|
+
categories?: Partial<Record<RuleCategory, RuleSeverity>>;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// ============================================================================
|
|
205
|
+
// TypeCheckerConfig
|
|
206
|
+
// ============================================================================
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Type checker configuration
|
|
210
|
+
*/
|
|
211
|
+
export interface TypeCheckerConfig {
|
|
212
|
+
/**
|
|
213
|
+
* Enable type checking
|
|
214
|
+
* @default false
|
|
215
|
+
*/
|
|
216
|
+
enabled?: boolean;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Enable strict mode
|
|
220
|
+
* @default false
|
|
221
|
+
*/
|
|
222
|
+
strict?: boolean;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Check component props
|
|
226
|
+
* @default true
|
|
227
|
+
*/
|
|
228
|
+
checkProps?: boolean;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Check component emits
|
|
232
|
+
* @default true
|
|
233
|
+
*/
|
|
234
|
+
checkEmits?: boolean;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Check template bindings
|
|
238
|
+
* @default true
|
|
239
|
+
*/
|
|
240
|
+
checkTemplateBindings?: boolean;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* Path to tsconfig.json
|
|
244
|
+
* @default auto-detected
|
|
245
|
+
*/
|
|
246
|
+
tsconfig?: string;
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Path to tsgo binary
|
|
250
|
+
*/
|
|
251
|
+
tsgoPath?: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// ============================================================================
|
|
255
|
+
// FormatterConfig
|
|
256
|
+
// ============================================================================
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* Formatter configuration
|
|
260
|
+
*/
|
|
261
|
+
export interface FormatterConfig {
|
|
262
|
+
/**
|
|
263
|
+
* Max line width
|
|
264
|
+
* @default 80
|
|
265
|
+
*/
|
|
266
|
+
printWidth?: number;
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Indentation width
|
|
270
|
+
* @default 2
|
|
271
|
+
*/
|
|
272
|
+
tabWidth?: number;
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Use tabs for indentation
|
|
276
|
+
* @default false
|
|
277
|
+
*/
|
|
278
|
+
useTabs?: boolean;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* Print semicolons
|
|
282
|
+
* @default true
|
|
283
|
+
*/
|
|
284
|
+
semi?: boolean;
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Use single quotes
|
|
288
|
+
* @default false
|
|
289
|
+
*/
|
|
290
|
+
singleQuote?: boolean;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Trailing commas
|
|
294
|
+
* @default 'all'
|
|
295
|
+
*/
|
|
296
|
+
trailingComma?: "all" | "none" | "es5";
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// ============================================================================
|
|
300
|
+
// LspConfig
|
|
301
|
+
// ============================================================================
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* LSP configuration
|
|
305
|
+
*/
|
|
306
|
+
export interface LspConfig {
|
|
307
|
+
/**
|
|
308
|
+
* Enable LSP
|
|
309
|
+
* @default true
|
|
310
|
+
*/
|
|
311
|
+
enabled?: boolean;
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Enable diagnostics
|
|
315
|
+
* @default true
|
|
316
|
+
*/
|
|
317
|
+
diagnostics?: boolean;
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* Enable completions
|
|
321
|
+
* @default true
|
|
322
|
+
*/
|
|
323
|
+
completion?: boolean;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Enable hover information
|
|
327
|
+
* @default true
|
|
328
|
+
*/
|
|
329
|
+
hover?: boolean;
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* Enable go-to-definition
|
|
333
|
+
* @default true
|
|
334
|
+
*/
|
|
335
|
+
definition?: boolean;
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* Enable formatting via LSP
|
|
339
|
+
* @default true
|
|
340
|
+
*/
|
|
341
|
+
formatting?: boolean;
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Enable code actions
|
|
345
|
+
* @default true
|
|
346
|
+
*/
|
|
347
|
+
codeActions?: boolean;
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* Use tsgo for type checking in LSP
|
|
351
|
+
* @default false
|
|
352
|
+
*/
|
|
353
|
+
tsgo?: boolean;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// ============================================================================
|
|
357
|
+
// MuseaConfig
|
|
358
|
+
// ============================================================================
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* VRT (Visual Regression Testing) configuration for Musea
|
|
362
|
+
*/
|
|
363
|
+
export interface MuseaVrtConfig {
|
|
364
|
+
/**
|
|
365
|
+
* Threshold for pixel comparison (0-1)
|
|
366
|
+
* @default 0.1
|
|
367
|
+
*/
|
|
368
|
+
threshold?: number;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Output directory for screenshots
|
|
372
|
+
* @default '__musea_snapshots__'
|
|
373
|
+
*/
|
|
374
|
+
outDir?: string;
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* Viewport sizes
|
|
378
|
+
*/
|
|
379
|
+
viewports?: Array<{ width: number; height: number; name?: string }>;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* A11y configuration for Musea
|
|
384
|
+
*/
|
|
385
|
+
export interface MuseaA11yConfig {
|
|
386
|
+
/**
|
|
387
|
+
* Enable a11y checking
|
|
388
|
+
* @default false
|
|
389
|
+
*/
|
|
390
|
+
enabled?: boolean;
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* Axe-core rules to enable/disable
|
|
394
|
+
*/
|
|
395
|
+
rules?: Record<string, boolean>;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* Autogen configuration for Musea
|
|
400
|
+
*/
|
|
401
|
+
export interface MuseaAutogenConfig {
|
|
402
|
+
/**
|
|
403
|
+
* Enable auto-generation of variants
|
|
404
|
+
* @default false
|
|
405
|
+
*/
|
|
406
|
+
enabled?: boolean;
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Max variants to generate per component
|
|
410
|
+
* @default 10
|
|
411
|
+
*/
|
|
412
|
+
maxVariants?: number;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* Musea component gallery configuration
|
|
417
|
+
*/
|
|
418
|
+
export interface MuseaConfig {
|
|
419
|
+
/**
|
|
420
|
+
* Glob patterns for art files
|
|
421
|
+
* @default ['**\/*.art.vue']
|
|
422
|
+
*/
|
|
423
|
+
include?: string[];
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* Glob patterns to exclude
|
|
427
|
+
* @default ['node_modules/**', 'dist/**']
|
|
428
|
+
*/
|
|
429
|
+
exclude?: string[];
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Base path for gallery
|
|
433
|
+
* @default '/__musea__'
|
|
434
|
+
*/
|
|
435
|
+
basePath?: string;
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* Enable Storybook compatibility
|
|
439
|
+
* @default false
|
|
440
|
+
*/
|
|
441
|
+
storybookCompat?: boolean;
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* Enable inline art detection in .vue files
|
|
445
|
+
* @default false
|
|
446
|
+
*/
|
|
447
|
+
inlineArt?: boolean;
|
|
448
|
+
|
|
449
|
+
/**
|
|
450
|
+
* VRT configuration
|
|
451
|
+
*/
|
|
452
|
+
vrt?: MuseaVrtConfig;
|
|
453
|
+
|
|
454
|
+
/**
|
|
455
|
+
* A11y configuration
|
|
456
|
+
*/
|
|
457
|
+
a11y?: MuseaA11yConfig;
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* Autogen configuration
|
|
461
|
+
*/
|
|
462
|
+
autogen?: MuseaAutogenConfig;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
// ============================================================================
|
|
466
|
+
// GlobalTypesConfig
|
|
467
|
+
// ============================================================================
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Global type declaration
|
|
471
|
+
*/
|
|
472
|
+
export interface GlobalTypeDeclaration {
|
|
473
|
+
/**
|
|
474
|
+
* TypeScript type string
|
|
475
|
+
*/
|
|
476
|
+
type: string;
|
|
477
|
+
|
|
478
|
+
/**
|
|
479
|
+
* Default value
|
|
480
|
+
*/
|
|
481
|
+
defaultValue?: string;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* Global types configuration
|
|
486
|
+
*/
|
|
487
|
+
export type GlobalTypesConfig = Record<string, GlobalTypeDeclaration | string>;
|
|
488
|
+
|
|
489
|
+
// ============================================================================
|
|
490
|
+
// LoadConfigOptions
|
|
491
|
+
// ============================================================================
|
|
492
|
+
|
|
493
|
+
/**
|
|
494
|
+
* Options for loading vize.config file
|
|
495
|
+
*/
|
|
496
|
+
export interface LoadConfigOptions {
|
|
497
|
+
/**
|
|
498
|
+
* Config file search mode
|
|
499
|
+
* - 'root': Search only in the specified root directory
|
|
500
|
+
* - 'auto': Search from cwd upward until finding a config file
|
|
501
|
+
* - 'none': Don't load config file
|
|
502
|
+
* @default 'root'
|
|
503
|
+
*/
|
|
504
|
+
mode?: "root" | "auto" | "none";
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* Custom config file path (overrides automatic search)
|
|
508
|
+
*/
|
|
509
|
+
configFile?: string;
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* Config environment for dynamic config resolution
|
|
513
|
+
*/
|
|
514
|
+
env?: ConfigEnv;
|
|
515
|
+
}
|
package/scripts/postinstall.js
DELETED
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
import { createWriteStream, chmodSync, existsSync, mkdirSync, unlinkSync } from "fs";
|
|
4
|
-
import { dirname, join } from "path";
|
|
5
|
-
import { fileURLToPath } from "url";
|
|
6
|
-
import { pipeline } from "stream/promises";
|
|
7
|
-
import { createGunzip } from "zlib";
|
|
8
|
-
|
|
9
|
-
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
10
|
-
const packageJson = await import("../package.json", { with: { type: "json" } });
|
|
11
|
-
const version = packageJson.default.version;
|
|
12
|
-
|
|
13
|
-
const REPO = "vizejs/vize";
|
|
14
|
-
|
|
15
|
-
const PLATFORMS = {
|
|
16
|
-
"darwin-x64": {
|
|
17
|
-
target: "x86_64-apple-darwin",
|
|
18
|
-
filename: "vize-x86_64-apple-darwin.tar.gz",
|
|
19
|
-
},
|
|
20
|
-
"darwin-arm64": {
|
|
21
|
-
target: "aarch64-apple-darwin",
|
|
22
|
-
filename: "vize-aarch64-apple-darwin.tar.gz",
|
|
23
|
-
},
|
|
24
|
-
"linux-x64": {
|
|
25
|
-
target: "x86_64-unknown-linux-gnu",
|
|
26
|
-
filename: "vize-x86_64-unknown-linux-gnu.tar.gz",
|
|
27
|
-
},
|
|
28
|
-
"linux-arm64": {
|
|
29
|
-
target: "aarch64-unknown-linux-gnu",
|
|
30
|
-
filename: "vize-aarch64-unknown-linux-gnu.tar.gz",
|
|
31
|
-
},
|
|
32
|
-
"win32-x64": {
|
|
33
|
-
target: "x86_64-pc-windows-msvc",
|
|
34
|
-
filename: "vize-x86_64-pc-windows-msvc.zip",
|
|
35
|
-
},
|
|
36
|
-
"win32-arm64": {
|
|
37
|
-
target: "aarch64-pc-windows-msvc",
|
|
38
|
-
filename: "vize-aarch64-pc-windows-msvc.zip",
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
async function main() {
|
|
43
|
-
// Skip in CI environment - binary is built separately and not available during pnpm install
|
|
44
|
-
if (process.env.CI) {
|
|
45
|
-
console.log("CI environment detected, skipping binary download.");
|
|
46
|
-
return;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
const platform = `${process.platform}-${process.arch}`;
|
|
50
|
-
const config = PLATFORMS[platform];
|
|
51
|
-
|
|
52
|
-
if (!config) {
|
|
53
|
-
console.error(`Unsupported platform: ${platform}`);
|
|
54
|
-
console.error(`Supported platforms: ${Object.keys(PLATFORMS).join(", ")}`);
|
|
55
|
-
console.error(
|
|
56
|
-
"\nYou can install the CLI from source using: cargo install vize"
|
|
57
|
-
);
|
|
58
|
-
process.exit(1);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
const binDir = join(__dirname, "..", "bin");
|
|
62
|
-
const binaryName = process.platform === "win32" ? "vize.exe" : "vize";
|
|
63
|
-
const binaryPath = join(binDir, binaryName);
|
|
64
|
-
|
|
65
|
-
// Skip if binary already exists (for local development)
|
|
66
|
-
if (existsSync(binaryPath)) {
|
|
67
|
-
console.log("Vize binary already exists, skipping download.");
|
|
68
|
-
return;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (!existsSync(binDir)) {
|
|
72
|
-
mkdirSync(binDir, { recursive: true });
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
const tag = `v${version}`;
|
|
76
|
-
const downloadUrl = `https://github.com/${REPO}/releases/download/${tag}/${config.filename}`;
|
|
77
|
-
|
|
78
|
-
console.log(`Downloading Vize ${version} for ${platform}...`);
|
|
79
|
-
console.log(`URL: ${downloadUrl}`);
|
|
80
|
-
|
|
81
|
-
try {
|
|
82
|
-
const response = await fetch(downloadUrl);
|
|
83
|
-
|
|
84
|
-
if (!response.ok) {
|
|
85
|
-
throw new Error(`Failed to download: ${response.status} ${response.statusText}`);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
const tempFile = join(binDir, config.filename);
|
|
89
|
-
|
|
90
|
-
// Download to temp file
|
|
91
|
-
const fileStream = createWriteStream(tempFile);
|
|
92
|
-
await pipeline(response.body, fileStream);
|
|
93
|
-
|
|
94
|
-
// Extract based on file type
|
|
95
|
-
if (config.filename.endsWith(".tar.gz")) {
|
|
96
|
-
await extractTarGz(tempFile, binDir, binaryName);
|
|
97
|
-
} else if (config.filename.endsWith(".zip")) {
|
|
98
|
-
await extractZip(tempFile, binDir, binaryName);
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
// Clean up temp file
|
|
102
|
-
unlinkSync(tempFile);
|
|
103
|
-
|
|
104
|
-
// Make executable on Unix
|
|
105
|
-
if (process.platform !== "win32") {
|
|
106
|
-
chmodSync(binaryPath, 0o755);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
console.log(`Vize ${version} installed successfully!`);
|
|
110
|
-
} catch (error) {
|
|
111
|
-
console.error(`Failed to install Vize: ${error.message}`);
|
|
112
|
-
console.error(
|
|
113
|
-
"\nYou can install the CLI from source using: cargo install vize"
|
|
114
|
-
);
|
|
115
|
-
process.exit(1);
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
async function extractTarGz(archivePath, destDir, binaryName) {
|
|
120
|
-
const { execSync } = await import("child_process");
|
|
121
|
-
execSync(`tar -xzf "${archivePath}" -C "${destDir}"`, { stdio: "inherit" });
|
|
122
|
-
|
|
123
|
-
// The archive contains a 'vize' binary directly
|
|
124
|
-
// If not in place, move it
|
|
125
|
-
const extractedPath = join(destDir, "vize");
|
|
126
|
-
const targetPath = join(destDir, binaryName);
|
|
127
|
-
if (extractedPath !== targetPath && existsSync(extractedPath)) {
|
|
128
|
-
const { renameSync } = await import("fs");
|
|
129
|
-
renameSync(extractedPath, targetPath);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
async function extractZip(archivePath, destDir, binaryName) {
|
|
134
|
-
const { execSync } = await import("child_process");
|
|
135
|
-
execSync(`unzip -o "${archivePath}" -d "${destDir}"`, { stdio: "inherit" });
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
main();
|