feat: include missing types.ts in jsr include

This commit is contained in:
Huakun Shen 2025-01-12 01:54:00 -05:00
parent 54a6d4fc55
commit e142407486
No known key found for this signature in database
5 changed files with 1392 additions and 21 deletions

View File

@ -4,7 +4,7 @@
},
"imports": {
"@hk/photographer-toolbox": "jsr:@hk/photographer-toolbox@^0.1.12",
"@kunkun/api": "jsr:@kunkun/api@^0.0.40",
"@kunkun/api": "jsr:@kunkun/api@^0.0.52",
"@std/assert": "jsr:@std/assert@1",
"@std/path": "jsr:@std/path@^1.0.7",
"valibot": "jsr:@valibot/valibot@^0.42.1",

1388
deno-src/deno.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,18 @@
{
"name": "@kunkun/ext-image-processing",
"version": "0.0.8",
"version": "0.0.9",
"license": "MIT",
"exports": "./mod.ts",
"publish": {
"include": ["build", "dist", "mod.ts", "package.json", "README.md", "LICENSE", "deno-src"]
"include": [
"build",
"dist",
"mod.ts",
"package.json",
"README.md",
"LICENSE",
"deno-src",
"src/types.ts"
]
}
}

View File

@ -16,6 +16,9 @@ async function build() {
outdir: './dist',
minify: false
});
// const distFile = join(import.meta.dir, '..', 'dist', 'image-info.js');
// console.log(distFile);
// await $`cp ${distFile} "/Users/hk/Library/Application Support/sh.kunkun.desktop/extensions/image-processing/dist/image-info.js"`;
if (Bun.argv.includes('dev')) {
await refreshTemplateWorkerExtension();
}

View File

@ -45,13 +45,12 @@ class ImageInfo extends WorkerExtension {
command.stdout.on('data', (data) => {
console.log('stdout', data);
});
// command.stderr.on('data', (data) => {
// console.warn('stderr', data);
// });
command.stderr.on('data', (data) => {
console.warn('stderr', data);
});
this.api = rpcChannel.getAPI();
this.apiProcess = process;
}
async refreshList(paths: string[]) {
ui.render(new List.List({ items: [] }));
if (!this.api) await this.fillApi();