mirror of
https://github.com/kunkunsh/kunkun-ext-system-info.git
synced 2025-04-04 19:26:43 +00:00
chore: bump version to 0.1.3, update dependencies, and modify publish workflow
This commit is contained in:
parent
0c7ea413c4
commit
5b0d68a0d1
1
.github/workflows/jsr-publish.yml
vendored
1
.github/workflows/jsr-publish.yml
vendored
@ -19,5 +19,6 @@ jobs:
|
||||
run: bun install
|
||||
- name: Build
|
||||
run: bun run build
|
||||
- run: bunx kksh@latest verify --publish
|
||||
- name: Publish package
|
||||
run: npx jsr publish
|
||||
|
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kunkun/kunkun-ext-system-info",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"license": "MIT",
|
||||
"exports": "./mod.ts",
|
||||
"publish": {
|
||||
|
13
package.json
13
package.json
@ -2,7 +2,7 @@
|
||||
"$schema": "https://schema.kunkun.sh",
|
||||
"name": "kunkun-ext-system-info",
|
||||
"license": "MIT",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"repository": "https://github.com/kunkunsh/kunkun-ext-system-info",
|
||||
"kunkun": {
|
||||
"name": "System Info",
|
||||
@ -13,7 +13,9 @@
|
||||
"type": "iconify",
|
||||
"value": "grommet-icons:system"
|
||||
},
|
||||
"demoImages": ["https://i.imgur.com/SrIIlCa.png"],
|
||||
"demoImages": [
|
||||
"https://i.imgur.com/SrIIlCa.png"
|
||||
],
|
||||
"permissions": [
|
||||
"system-info:all",
|
||||
"clipboard:read-text",
|
||||
@ -42,7 +44,10 @@
|
||||
"type": "iconify",
|
||||
"value": "emojione:battery"
|
||||
},
|
||||
"cmds": []
|
||||
"cmds": [],
|
||||
"platforms": [
|
||||
"macos"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -59,7 +64,7 @@
|
||||
"format": "prettier --write ."
|
||||
},
|
||||
"dependencies": {
|
||||
"@kksh/api": "^0.0.52",
|
||||
"@kksh/api": "^0.1.1",
|
||||
"@kksh/svelte5": "0.1.10",
|
||||
"clsx": "^2.1.1",
|
||||
"lucide-svelte": "^0.462.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { watch } from 'fs';
|
||||
import { join } from 'path';
|
||||
import { refreshTemplateWorkerExtension } from '@kksh/api/dev';
|
||||
import { refreshTemplateWorkerCommand } from '@kksh/api/dev';
|
||||
import { $ } from 'bun';
|
||||
|
||||
const entrypoints = ['./template-src/battery-info.ts'];
|
||||
@ -17,7 +17,7 @@ async function build() {
|
||||
minify: false
|
||||
});
|
||||
if (Bun.argv.includes('dev')) {
|
||||
await refreshTemplateWorkerExtension();
|
||||
await refreshTemplateWorkerCommand();
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte5';
|
||||
import { ui } from '@kksh/api/ui/iframe';
|
||||
import { ui } from '@kksh/api/ui/custom';
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
let config: ThemeConfig = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
import { ModeWatcher } from 'mode-watcher';
|
||||
import { ThemeWrapper, updateTheme } from '@kksh/svelte5';
|
||||
import { onMount } from 'svelte';
|
||||
import { ui } from '@kksh/api/ui/iframe';
|
||||
import { ui } from '@kksh/api/ui/custom';
|
||||
|
||||
onMount(() => {
|
||||
ui.registerDragRegion();
|
||||
|
@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { base } from '$app/paths';
|
||||
import { clipboard, notification, ui, toast } from '@kksh/api/ui/iframe';
|
||||
import { clipboard, notification, ui, toast } from '@kksh/api/ui/custom';
|
||||
import {
|
||||
ModeToggle,
|
||||
Button,
|
||||
|
@ -13,9 +13,9 @@ import {
|
||||
toast,
|
||||
ui,
|
||||
utils,
|
||||
WorkerExtension,
|
||||
TemplateUiCommand,
|
||||
type ListSchema
|
||||
} from '@kksh/api/ui/worker';
|
||||
} from '@kksh/api/ui/template';
|
||||
import { getMacBatteryInfo } from './mac-ioreg';
|
||||
|
||||
async function parseBatteryInfo(
|
||||
@ -196,7 +196,7 @@ async function run() {
|
||||
});
|
||||
}
|
||||
|
||||
class BatteryInfo extends WorkerExtension {
|
||||
class BatteryInfo extends TemplateUiCommand {
|
||||
intervalId: NodeJS.Timer | null = null;
|
||||
async onBeforeGoBack() {
|
||||
if (this.intervalId) {
|
||||
|
@ -12,8 +12,8 @@ import {
|
||||
toast,
|
||||
ui,
|
||||
utils,
|
||||
WorkerExtension
|
||||
} from '@kksh/api/ui/worker';
|
||||
TemplateUiCommand
|
||||
} from '@kksh/api/ui/template';
|
||||
|
||||
export async function getMacBatteryInfo() {
|
||||
const batteryInfoRet = await shell
|
||||
|
Loading…
x
Reference in New Issue
Block a user