Update package version to 0.0.10, disable Deno support in VSCode settings, and modify target directory in store based on development environment.

This commit is contained in:
Huakun Shen 2025-03-23 08:27:04 -04:00
parent bdeaf25007
commit 969ba81090
No known key found for this signature in database
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,3 @@
{ {
"deno.enable": true "deno.enable": false
} }

View File

@ -3,7 +3,7 @@
"name": "kunkun-ext-disk-speed", "name": "kunkun-ext-disk-speed",
"license": "MIT", "license": "MIT",
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed", "repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
"version": "0.0.9", "version": "0.0.10",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "Disk Speed", "name": "Disk Speed",

View File

@ -1,4 +1,7 @@
import { writable } from "svelte/store"; import { writable } from "svelte/store";
import { dev } from "$app/environment";
export const stress = writable(1); export const stress = writable(1);
export const targetDir = writable<string | undefined>("/Volumes/Portable2TB"); export const targetDir = writable<string | undefined>(
dev ? "/Volumes/Portable2TB" : undefined
);