mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-03 18:56:44 +00:00
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:
parent
bdeaf25007
commit
969ba81090
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"deno.enable": true
|
"deno.enable": false
|
||||||
}
|
}
|
@ -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",
|
||||||
|
@ -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
|
||||||
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user