@powernukkitx/cli 0.0.1

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.
Files changed (41) hide show
  1. package/dist/bundle.js +18871 -0
  2. package/dist/commands/backup.d.ts +1 -0
  3. package/dist/commands/backup.js +74 -0
  4. package/dist/commands/config.d.ts +1 -0
  5. package/dist/commands/config.js +114 -0
  6. package/dist/commands/doctor.d.ts +1 -0
  7. package/dist/commands/doctor.js +119 -0
  8. package/dist/commands/info.d.ts +1 -0
  9. package/dist/commands/info.js +36 -0
  10. package/dist/commands/init.d.ts +4 -0
  11. package/dist/commands/init.js +73 -0
  12. package/dist/commands/plugin.d.ts +12 -0
  13. package/dist/commands/plugin.js +385 -0
  14. package/dist/commands/start.d.ts +7 -0
  15. package/dist/commands/start.js +108 -0
  16. package/dist/commands/update.d.ts +5 -0
  17. package/dist/commands/update.js +55 -0
  18. package/dist/index.d.ts +2 -0
  19. package/dist/index.js +260 -0
  20. package/dist/lang/en.json +178 -0
  21. package/dist/lang/fr.json +178 -0
  22. package/dist/lang/index.d.ts +7 -0
  23. package/dist/lang/index.js +83 -0
  24. package/dist/plugins.json +66 -0
  25. package/dist/types.d.ts +61 -0
  26. package/dist/types.js +1 -0
  27. package/dist/utils/api.d.ts +18 -0
  28. package/dist/utils/api.js +74 -0
  29. package/dist/utils/github.d.ts +27 -0
  30. package/dist/utils/github.js +187 -0
  31. package/dist/utils/logger.d.ts +15 -0
  32. package/dist/utils/logger.js +72 -0
  33. package/dist/utils/pause.d.ts +1 -0
  34. package/dist/utils/pause.js +6 -0
  35. package/dist/utils/plugins.d.ts +4 -0
  36. package/dist/utils/plugins.js +34 -0
  37. package/dist/utils/server.d.ts +3 -0
  38. package/dist/utils/server.js +39 -0
  39. package/dist/utils/updater.d.ts +1 -0
  40. package/dist/utils/updater.js +86 -0
  41. package/package.json +63 -0
@@ -0,0 +1,385 @@
1
+ import { existsSync } from 'node:fs';
2
+ import { readdir, mkdir, rm, rename as fsRename } from 'node:fs/promises';
3
+ import { join, resolve } from 'node:path';
4
+ import { checkbox, confirm, input, select } from '@inquirer/prompts';
5
+ import chalk from 'chalk';
6
+ import { header, success, error, info, warn, highlight, dim, step, bullet, divider } from '../utils/logger.js';
7
+ import { t } from '../lang/index.js';
8
+ import { fetchPluginsList, fetchPluginDetail, proxyDownloadUrl } from '../utils/api.js';
9
+ import { downloadFile } from '../utils/github.js';
10
+ import { saveInstalledPlugin, getInstalledPlugins } from '../utils/plugins.js';
11
+ import { resolveServerDir } from '../utils/server.js';
12
+ async function getPluginsDir() {
13
+ const server = await resolveServerDir();
14
+ return server ? join(server, 'plugins') : resolve('plugins');
15
+ }
16
+ function formatDownloads(n) {
17
+ if (n >= 1000)
18
+ return `${(n / 1000).toFixed(1)}k`;
19
+ return String(n);
20
+ }
21
+ function renderStars(n) {
22
+ const full = '★'.repeat(Math.min(Math.floor(n / 10), 5));
23
+ const empty = '☆'.repeat(Math.max(5 - full.length, 0));
24
+ const color = n >= 50 ? chalk.yellow : chalk.dim;
25
+ return color(full + empty);
26
+ }
27
+ // ─── List ─────────────────────────────────────────────────────
28
+ export async function pluginListCmd(options) {
29
+ header(`📋 ${t('plugin.titleList')}`);
30
+ const params = {};
31
+ if (options?.sort)
32
+ params.sort = options.sort;
33
+ if (options?.limit)
34
+ params.limit = options.limit;
35
+ if (options?.page)
36
+ params.page = options.page;
37
+ if (options?.q)
38
+ params.q = options.q;
39
+ step(t('plugin.fetching'));
40
+ try {
41
+ const resp = await fetchPluginsList(params);
42
+ const list = resp.plugins;
43
+ if (list.length === 0) {
44
+ info(t('plugin.catalogEmpty'));
45
+ return;
46
+ }
47
+ for (const p of list) {
48
+ const name = chalk.hex('#FFB347')(p.name);
49
+ const author = chalk.dim(`by ${p.author}`);
50
+ const stars = renderStars(p.stars);
51
+ const downloads = chalk.cyan(`${formatDownloads(p.downloads)} downloads`);
52
+ const version = chalk.dim(`v${p.version}`);
53
+ const installCmd = chalk.hex('#6C8EBF')(`pnx plugin install ${p.slug}`);
54
+ console.log(` ${name} ${author} ${stars} ${downloads} ${version}`);
55
+ if (p.description) {
56
+ console.log(` ${chalk.dim(' ')}${p.description}`);
57
+ }
58
+ console.log(` ${chalk.dim(' →')} ${installCmd}\n`);
59
+ }
60
+ if (resp.count > list.length) {
61
+ info(t('plugin.showingCount', String(list.length), String(resp.count)));
62
+ }
63
+ }
64
+ catch (err) {
65
+ error(t('plugin.fetchError', err.message));
66
+ }
67
+ }
68
+ // ─── Search ───────────────────────────────────────────────────
69
+ export async function pluginSearchCmd(term) {
70
+ if (!term) {
71
+ term = await input({ message: t('plugin.searchPrompt'), default: '' });
72
+ if (!term) {
73
+ info(t('plugin.searchCancelled'));
74
+ return;
75
+ }
76
+ }
77
+ await pluginListCmd({ q: term });
78
+ }
79
+ // ─── Info ─────────────────────────────────────────────────────
80
+ export async function pluginInfoCmd(slug) {
81
+ if (!slug) {
82
+ slug = await input({ message: t('plugin.infoPrompt'), default: '' });
83
+ if (!slug) {
84
+ info(t('plugin.infoCancelled'));
85
+ return;
86
+ }
87
+ }
88
+ header(`📖 ${t('plugin.titleInfo')} — ${highlight(slug)}`);
89
+ step(t('plugin.fetching'));
90
+ try {
91
+ const detail = await fetchPluginDetail(slug);
92
+ const latest = detail.releases.find(r => r.is_stable) || detail.releases[0];
93
+ console.log(`\n ${chalk.hex('#FFB347').bold(detail.name)}`);
94
+ if (detail.description)
95
+ console.log(` ${dim(detail.description)}`);
96
+ console.log();
97
+ console.log(` ${dim('Author:')} ${highlight(detail.author)}`);
98
+ console.log(` ${dim('Stars:')} ${renderStars(detail.stars)} ${detail.stars}`);
99
+ console.log(` ${dim('Downloads:')} ${chalk.cyan(formatDownloads(detail.downloads))}`);
100
+ console.log(` ${dim('Version:')} ${chalk.green(detail.latest_version)}`);
101
+ console.log(` ${dim('Updated:')} ${dim(new Date(detail.updated_at).toLocaleDateString())}`);
102
+ console.log(` ${dim('Tags:')} ${(detail.tags || []).map(t => chalk.cyan(t)).join(', ')}`);
103
+ if (detail.repository_url)
104
+ console.log(` ${dim('Repo:')} ${chalk.blue(detail.repository_url)}`);
105
+ if (detail.documentation_url)
106
+ console.log(` ${dim('Docs:')} ${chalk.blue(detail.documentation_url)}`);
107
+ if (detail.license_url)
108
+ console.log(` ${dim('License:')} ${chalk.blue(detail.license_url)}`);
109
+ // Releases
110
+ if (detail.releases.length > 0) {
111
+ divider();
112
+ step(t('plugin.releases'));
113
+ for (const r of detail.releases.slice(0, 5)) {
114
+ const stable = r.is_stable ? chalk.green('●') : chalk.dim('○');
115
+ const fileInfo = r.files.length > 0
116
+ ? `${chalk.cyan((r.files[0].size / 1024).toFixed(0) + ' KB')}`
117
+ : '';
118
+ console.log(` ${stable} ${chalk.bold('v' + r.version)} ${dim(new Date(r.created_at).toLocaleDateString())} ${fileInfo}`);
119
+ }
120
+ if (detail.releases.length > 5) {
121
+ info(t('plugin.moreReleases', String(detail.releases.length - 5)));
122
+ }
123
+ }
124
+ }
125
+ catch (err) {
126
+ error(t('plugin.notFound', slug));
127
+ if (err.message)
128
+ warn(err.message);
129
+ }
130
+ }
131
+ // ─── Install ──────────────────────────────────────────────────
132
+ async function pickVersion(releases) {
133
+ const choices = releases.map(r => ({
134
+ name: `${r.is_stable ? chalk.green('●') : chalk.dim('○')} v${r.version} ${dim(new Date(r.created_at).toLocaleDateString())} ${r.is_stable ? chalk.green('stable') : chalk.dim('dev')}`,
135
+ value: r,
136
+ }));
137
+ return await select({
138
+ message: t('plugin.selectVersion'),
139
+ choices,
140
+ });
141
+ }
142
+ export async function pluginInstallCmd(names) {
143
+ const pluginsDir = await getPluginsDir();
144
+ await mkdir(pluginsDir, { recursive: true });
145
+ // interactive picker if no names
146
+ if (names.length === 0) {
147
+ header(`📦 ${t('plugin.titleInstall')}`);
148
+ step(t('plugin.fetching'));
149
+ try {
150
+ const resp = await fetchPluginsList({ sort: 'stars', limit: 50 });
151
+ const choices = resp.plugins.map(p => ({
152
+ name: `${chalk.hex('#FFB347')(p.name)} ${chalk.dim('—')} ${chalk.dim(p.description || '')}`,
153
+ value: p.slug,
154
+ }));
155
+ const selected = await checkbox({
156
+ message: t('plugin.selectPrompt'),
157
+ choices,
158
+ pageSize: 10,
159
+ });
160
+ names = selected;
161
+ if (names.length === 0) {
162
+ info(t('plugin.noSelection'));
163
+ return;
164
+ }
165
+ }
166
+ catch (err) {
167
+ error(t('plugin.fetchError', err.message));
168
+ return;
169
+ }
170
+ }
171
+ header(`📦 ${t('plugin.titleInstall')}`);
172
+ for (const slug of names) {
173
+ try {
174
+ step(t('plugin.fetchingInfo', slug));
175
+ // URL install
176
+ if (slug.startsWith('http://') || slug.startsWith('https://')) {
177
+ if (slug.endsWith('.jar')) {
178
+ const dest = join(pluginsDir, slug.split('/').pop() || 'plugin.jar');
179
+ await downloadFile(slug, dest, dest.split('/').pop() || 'plugin.jar');
180
+ success(t('plugin.installSuccess', slug.split('/').pop() || ''));
181
+ }
182
+ else {
183
+ error(t('plugin.urlInvalid'));
184
+ }
185
+ continue;
186
+ }
187
+ const detail = await fetchPluginDetail(slug);
188
+ let release = detail.releases.find(r => r.is_stable) || detail.releases[0];
189
+ if (!release) {
190
+ error(t('plugin.noRelease', slug));
191
+ continue;
192
+ }
193
+ // Ask for version if multiple releases
194
+ if (detail.releases.length > 1) {
195
+ release = await pickVersion(detail.releases);
196
+ }
197
+ const file = release.files[0];
198
+ if (!file) {
199
+ error(t('plugin.noFile', slug, release.version));
200
+ continue;
201
+ }
202
+ // Download via proxy
203
+ const downloadUrl = proxyDownloadUrl(slug, release.version);
204
+ const dest = join(pluginsDir, file.name);
205
+ await downloadFile(downloadUrl, dest, file.name);
206
+ // Track installation
207
+ await saveInstalledPlugin({
208
+ slug,
209
+ name: detail.name,
210
+ version: release.version,
211
+ installedAt: new Date().toISOString(),
212
+ fileName: file.name,
213
+ });
214
+ success(t('plugin.installSuccess', detail.name));
215
+ }
216
+ catch (err) {
217
+ error(t('plugin.installError', slug));
218
+ if (err.message)
219
+ warn(err.message);
220
+ }
221
+ }
222
+ // Summary
223
+ const jars = await getInstalledJars(pluginsDir);
224
+ if (jars.length > 0) {
225
+ console.log();
226
+ info(t('plugin.installedCount', String(jars.length)));
227
+ info(t('plugin.restartHint'));
228
+ }
229
+ }
230
+ // ─── Installed ────────────────────────────────────────────────
231
+ async function getInstalledJars(dir) {
232
+ if (!existsSync(dir))
233
+ return [];
234
+ const files = await readdir(dir);
235
+ return files.filter(f => f.endsWith('.jar'));
236
+ }
237
+ export async function pluginInstalledCmd() {
238
+ const pluginsDir = await getPluginsDir();
239
+ header(`📁 ${t('plugin.titleInstalled')}`);
240
+ if (!existsSync(pluginsDir)) {
241
+ info(t('plugin.noPluginsDir'));
242
+ return;
243
+ }
244
+ const jars = await getInstalledJars(pluginsDir);
245
+ if (jars.length === 0) {
246
+ info(t('plugin.noPlugins'));
247
+ return;
248
+ }
249
+ const tracked = await getInstalledPlugins();
250
+ bullet(jars.map((j) => {
251
+ const slug = j.replace('.jar', '');
252
+ const meta = tracked.find(p => p.fileName === j || p.slug === slug);
253
+ if (meta) {
254
+ return `${highlight(slug)} ${dim('v' + meta.version)}`;
255
+ }
256
+ return highlight(slug);
257
+ }));
258
+ console.log();
259
+ info(t('plugin.installedCount', String(jars.length)));
260
+ info(t('plugin.restartHint'));
261
+ }
262
+ // ─── Remove ───────────────────────────────────────────────────
263
+ export async function pluginRemoveCmd(names) {
264
+ const pluginsDir = await getPluginsDir();
265
+ header(`🗑️ ${t('plugin.titleRemove')}`);
266
+ if (!existsSync(pluginsDir)) {
267
+ error(t('plugin.noPluginsDir'));
268
+ return;
269
+ }
270
+ const jars = await getInstalledJars(pluginsDir);
271
+ if (names.length === 0) {
272
+ const choices = jars.map(j => ({
273
+ name: highlight(j.replace('.jar', '')),
274
+ value: j,
275
+ }));
276
+ if (choices.length === 0) {
277
+ info(t('plugin.noPlugins'));
278
+ return;
279
+ }
280
+ const selected = await checkbox({ message: t('plugin.removePrompt'), choices });
281
+ names = selected;
282
+ if (names.length === 0) {
283
+ info(t('plugin.noSelection'));
284
+ return;
285
+ }
286
+ }
287
+ for (const rawName of names) {
288
+ const target = rawName.endsWith('.jar') ? rawName : `${rawName}.jar`;
289
+ const found = jars.find(j => j.toLowerCase() === target.toLowerCase());
290
+ if (!found) {
291
+ warn(t('plugin.notFound', rawName));
292
+ continue;
293
+ }
294
+ const ok = await confirm({ message: t('plugin.removeConfirm', found), default: false });
295
+ if (ok) {
296
+ await rm(join(pluginsDir, found));
297
+ success(t('plugin.removed', found));
298
+ }
299
+ else {
300
+ info(t('plugin.removeCancelled', found));
301
+ }
302
+ }
303
+ }
304
+ // ─── Update ───────────────────────────────────────────────────
305
+ export async function pluginUpdateCmd(names) {
306
+ const pluginsDir = await getPluginsDir();
307
+ header(`🔄 ${t('plugin.titleUpdate')}`);
308
+ if (!existsSync(pluginsDir)) {
309
+ error(t('plugin.noPluginsDir'));
310
+ return;
311
+ }
312
+ const jars = await getInstalledJars(pluginsDir);
313
+ if (jars.length === 0) {
314
+ info(t('plugin.noPlugins'));
315
+ return;
316
+ }
317
+ // interactive picker if no names
318
+ if (names.length === 0) {
319
+ const choices = jars.map(j => ({
320
+ name: highlight(j.replace('.jar', '')),
321
+ value: j,
322
+ }));
323
+ const selected = await checkbox({
324
+ message: t('plugin.updateSelect'),
325
+ choices,
326
+ });
327
+ names = selected.map(n => n.replace('.jar', ''));
328
+ if (names.length === 0) {
329
+ info(t('plugin.noSelection'));
330
+ return;
331
+ }
332
+ }
333
+ for (const rawName of names) {
334
+ const slug = rawName.endsWith('.jar') ? rawName.replace('.jar', '') : rawName;
335
+ const jarFile = jars.find(j => j.toLowerCase().startsWith(slug.toLowerCase()));
336
+ if (!jarFile) {
337
+ warn(t('plugin.notFound', rawName));
338
+ continue;
339
+ }
340
+ step(`${t('plugin.checkingUpdates')} ${highlight(slug)}`);
341
+ try {
342
+ const detail = await fetchPluginDetail(slug);
343
+ const latest = detail.releases.find(r => r.is_stable) || detail.releases[0];
344
+ if (!latest) {
345
+ warn(t('plugin.noRelease', slug));
346
+ continue;
347
+ }
348
+ const tracked = await getInstalledPlugins();
349
+ const meta = tracked.find(p => p.slug === slug);
350
+ if (meta && meta.version === latest.version) {
351
+ info(t('plugin.alreadyLatest', slug, latest.version));
352
+ continue;
353
+ }
354
+ const file = latest.files[0];
355
+ if (!file) {
356
+ warn(t('plugin.noFile', slug, latest.version));
357
+ continue;
358
+ }
359
+ // Backup old
360
+ const oldPath = join(pluginsDir, jarFile);
361
+ const backupPath = join(pluginsDir, `${jarFile}.old`);
362
+ await fsRename(oldPath, backupPath);
363
+ // Download new
364
+ const downloadUrl = proxyDownloadUrl(slug, latest.version);
365
+ const newPath = join(pluginsDir, file.name);
366
+ await downloadFile(downloadUrl, newPath, file.name);
367
+ // Remove backup
368
+ await rm(backupPath).catch(() => { });
369
+ // Update tracking
370
+ await saveInstalledPlugin({
371
+ slug,
372
+ name: detail.name,
373
+ version: latest.version,
374
+ installedAt: new Date().toISOString(),
375
+ fileName: file.name,
376
+ });
377
+ success(t('plugin.updateDone', detail.name, latest.version));
378
+ }
379
+ catch (err) {
380
+ error(t('plugin.updateError', rawName));
381
+ if (err.message)
382
+ warn(err.message);
383
+ }
384
+ }
385
+ }
@@ -0,0 +1,7 @@
1
+ export declare function startCmd(options: {
2
+ dir?: string;
3
+ generateOnly?: boolean;
4
+ restart?: boolean;
5
+ memory?: string;
6
+ interactive?: boolean;
7
+ }): Promise<void>;
@@ -0,0 +1,108 @@
1
+ import { existsSync } from 'node:fs';
2
+ import { spawn } from 'node:child_process';
3
+ import { join } from 'node:path';
4
+ import { cwd } from 'node:process';
5
+ import { input, confirm } from '@inquirer/prompts';
6
+ import chalk from 'chalk';
7
+ import { header, error, info, highlight, dim, success, step } from '../utils/logger.js';
8
+ import { t } from '../lang/index.js';
9
+ import { getDefaultJavaArgs, getJavaEnv } from '../utils/github.js';
10
+ import { resolveServerDir } from '../utils/server.js';
11
+ import { initCmd } from './init.js';
12
+ function findJava() {
13
+ const javaHome = process.env.JAVA_HOME;
14
+ if (javaHome) {
15
+ return join(javaHome, 'bin', 'java');
16
+ }
17
+ return 'java';
18
+ }
19
+ function checkJavaVersion() {
20
+ return new Promise((resolve) => {
21
+ const java = findJava();
22
+ const child = spawn(java, ['-version']);
23
+ let output = '';
24
+ child.on('error', () => resolve({ ok: false, version: '?' }));
25
+ child.stderr.on('data', (data) => {
26
+ output += data.toString();
27
+ });
28
+ child.on('close', () => {
29
+ const match = output.match(/(?:openjdk|java) version "?(?:1\.)?(\d+)/);
30
+ if (match) {
31
+ const ver = parseInt(match[1], 10);
32
+ resolve({ ok: ver >= 21, version: String(ver) });
33
+ }
34
+ else {
35
+ resolve({ ok: false, version: '?' });
36
+ }
37
+ });
38
+ });
39
+ }
40
+ export async function startCmd(options) {
41
+ const serverPath = options.dir ? join(cwd(), options.dir) : ((await resolveServerDir()) || cwd());
42
+ if (options.dir) {
43
+ process.chdir(serverPath);
44
+ }
45
+ if (!existsSync(join(serverPath, 'powernukkitx.jar'))) {
46
+ info(t('start.jarNotFound'));
47
+ const createNow = await confirm({
48
+ message: t('start.createPrompt'),
49
+ default: true,
50
+ });
51
+ if (createNow) {
52
+ await initCmd({ dir: serverPath });
53
+ return;
54
+ }
55
+ error(t('start.jarNotFound'));
56
+ process.exit(1);
57
+ }
58
+ header(`🚀 ${t('start.title')}`);
59
+ let memory = options.memory || '2G';
60
+ let autoRestart = options.restart ?? false;
61
+ if (options.interactive) {
62
+ memory = await input({
63
+ message: 'Memory allocation',
64
+ default: memory,
65
+ });
66
+ }
67
+ step(t('start.checkingJava'));
68
+ const javaCheck = await checkJavaVersion();
69
+ if (!javaCheck.ok) {
70
+ error(t('start.javaNotFound'));
71
+ process.exit(1);
72
+ }
73
+ success(t('start.javaVersion', javaCheck.version));
74
+ const java = findJava();
75
+ const javaArgs = getDefaultJavaArgs();
76
+ const cmdArgs = [
77
+ `-Xms${memory}`,
78
+ `-XX:MaxRAMPercentage=75.0`,
79
+ ...javaArgs,
80
+ '-jar', 'powernukkitx.jar',
81
+ ];
82
+ if (options.generateOnly) {
83
+ console.log(`\n ${highlight.bold(t('start.generatedCommand'))}`);
84
+ console.log(` ${chalk.cyan(`${java} ${cmdArgs.join(' ')}`)}\n`);
85
+ return;
86
+ }
87
+ console.log(`\n ${dim('JVM:')} ${highlight(java)}`);
88
+ console.log(` ${dim('Memory:')} ${highlight(memory)}`);
89
+ console.log(` ${dim('Restart:')} ${highlight(autoRestart ? 'Yes' : 'No')}\n`);
90
+ const runServer = () => {
91
+ const child = spawn(java, cmdArgs, {
92
+ stdio: 'inherit',
93
+ env: getJavaEnv(),
94
+ cwd: serverPath,
95
+ });
96
+ child.on('exit', (code) => {
97
+ if (code !== 0 && autoRestart) {
98
+ info(t('start.restarting'));
99
+ runServer();
100
+ }
101
+ else if (code !== 0) {
102
+ error(t('start.stopped', String(code ?? '?')));
103
+ process.exit(code ?? 0);
104
+ }
105
+ });
106
+ };
107
+ runServer();
108
+ }
@@ -0,0 +1,5 @@
1
+ export declare function updateCmd(options: {
2
+ dir?: string;
3
+ dev?: boolean;
4
+ force?: boolean;
5
+ }): Promise<void>;
@@ -0,0 +1,55 @@
1
+ import { existsSync } from 'node:fs';
2
+ import { rename } from 'node:fs/promises';
3
+ import { join } from 'node:path';
4
+ import { cwd } from 'node:process';
5
+ import { confirm } from '@inquirer/prompts';
6
+ import chalk from 'chalk';
7
+ import { header, success, error, info, step } from '../utils/logger.js';
8
+ import { t } from '../lang/index.js';
9
+ import { getLatestRelease, findAsset, downloadFile } from '../utils/github.js';
10
+ import { resolveServerDir } from '../utils/server.js';
11
+ import { initCmd } from './init.js';
12
+ export async function updateCmd(options) {
13
+ const serverPath = options.dir ? join(cwd(), options.dir) : ((await resolveServerDir()) || cwd());
14
+ if (!existsSync(join(serverPath, 'powernukkitx.jar'))) {
15
+ info(t('update.notFound'));
16
+ const createNow = await confirm({
17
+ message: t('start.createPrompt'),
18
+ default: true,
19
+ });
20
+ if (createNow) {
21
+ await initCmd({ dir: serverPath });
22
+ return;
23
+ }
24
+ error('powernukkitx.jar not found. Run "pnx init" first.');
25
+ process.exit(1);
26
+ }
27
+ header(`🔄 ${t('update.title')}`);
28
+ process.chdir(serverPath);
29
+ try {
30
+ step(t('update.checking'));
31
+ const release = await getLatestRelease();
32
+ const asset = await findAsset(release, 'powernukkitx.jar');
33
+ if (!asset) {
34
+ error('powernukkitx.jar not found in latest release.');
35
+ process.exit(1);
36
+ }
37
+ success(`${t('update.available')} ${chalk.bold(release.tag_name)}`);
38
+ if (existsSync('powernukkitx.jar.old') && !options.force) {
39
+ info('Old backup found, replacing...');
40
+ }
41
+ step(t('update.saving'));
42
+ await rename('powernukkitx.jar', 'powernukkitx.jar.old');
43
+ success(t('update.saved'));
44
+ await downloadFile(asset.browser_download_url, 'powernukkitx.jar', 'powernukkitx.jar');
45
+ success(t('update.done'));
46
+ console.log();
47
+ success(t('update.done'));
48
+ info(t('update.restartHint'));
49
+ info(t('update.deleteOldHint'));
50
+ }
51
+ catch (err) {
52
+ error(err.message);
53
+ process.exit(1);
54
+ }
55
+ }
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};