mirror of
https://github.com/kunkunsh/kunkun-ext-image-processing.git
synced 2025-04-04 10:16:45 +00:00
feat: include missing types.ts in jsr include
This commit is contained in:
parent
54a6d4fc55
commit
e142407486
@ -4,7 +4,7 @@
|
|||||||
},
|
},
|
||||||
"imports": {
|
"imports": {
|
||||||
"@hk/photographer-toolbox": "jsr:@hk/photographer-toolbox@^0.1.12",
|
"@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/assert": "jsr:@std/assert@1",
|
||||||
"@std/path": "jsr:@std/path@^1.0.7",
|
"@std/path": "jsr:@std/path@^1.0.7",
|
||||||
"valibot": "jsr:@valibot/valibot@^0.42.1",
|
"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",
|
"name": "@kunkun/ext-image-processing",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"exports": "./mod.ts",
|
"exports": "./mod.ts",
|
||||||
"publish": {
|
"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',
|
outdir: './dist',
|
||||||
minify: false
|
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')) {
|
if (Bun.argv.includes('dev')) {
|
||||||
await refreshTemplateWorkerExtension();
|
await refreshTemplateWorkerExtension();
|
||||||
}
|
}
|
||||||
|
@ -45,13 +45,12 @@ class ImageInfo extends WorkerExtension {
|
|||||||
command.stdout.on('data', (data) => {
|
command.stdout.on('data', (data) => {
|
||||||
console.log('stdout', data);
|
console.log('stdout', data);
|
||||||
});
|
});
|
||||||
// command.stderr.on('data', (data) => {
|
command.stderr.on('data', (data) => {
|
||||||
// console.warn('stderr', data);
|
console.warn('stderr', data);
|
||||||
// });
|
});
|
||||||
this.api = rpcChannel.getAPI();
|
this.api = rpcChannel.getAPI();
|
||||||
this.apiProcess = process;
|
this.apiProcess = process;
|
||||||
}
|
}
|
||||||
|
|
||||||
async refreshList(paths: string[]) {
|
async refreshList(paths: string[]) {
|
||||||
ui.render(new List.List({ items: [] }));
|
ui.render(new List.List({ items: [] }));
|
||||||
if (!this.api) await this.fillApi();
|
if (!this.api) await this.fillApi();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user