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