mirror of
https://github.com/kunkunsh/kunkun-ext-image-processing.git
synced 2025-04-03 18:06:42 +00:00
feat: include missing types.ts in jsr include
This commit is contained in:
parent
54a6d4fc55
commit
e142407486
@ -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
1388
deno-src/deno.lock
generated
File diff suppressed because it is too large
Load Diff
13
jsr.json
13
jsr.json
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user