create index.js entrypoint
All checks were successful
Distribution check / Generated files check (push) Successful in -2m2s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s
Unit tests / Unit tests (latest) (push) Successful in -2m0s
Unit tests / Unit tests (lts/*) (push) Successful in -2m0s
Unit tests / Unit tests (lts/hydrogen) (push) Successful in -2m0s

This commit is contained in:
2025-11-07 00:40:03 -05:00
parent 65097b3b1f
commit 960772d5d1
5 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
import { main } from './router.js';
main();
//# sourceMappingURL=index.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAEnC,IAAI,EAAE,CAAC","sourcesContent":["import { main } from './router.js';\n\nmain();\n"]}

File diff suppressed because one or more lines are too long

3
src/index.ts Normal file
View File

@@ -0,0 +1,3 @@
import { main } from './router.js';
main();

View File

@@ -3,7 +3,7 @@ import { context } from '@actions/github'
import ky from 'ky'; import ky from 'ky';
import { parse, type Result, type PackageInfo } from './pkgbase.js'; import { parse, type Result, type PackageInfo } from './pkgbase.js';
type Mode = 'parse' | 'move' | 'delete'; export type Mode = 'parse' | 'move' | 'delete';
interface PackageFile { interface PackageFile {
id: number, id: number,