Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ tasks:
- "pkg/**/*.go"
# don't add generates key (otherwise will always execute)

outdated:
desc: Check for outdated packages using npm-check-updates.
cmd: yarn dlx npm-check-updates

version:
desc: Get the current package version, or bump version if args are present. To pass args to `version.cjs`, add them after `--`. See `version.cjs` for usage definitions for the arguments.
cmd: node version.cjs {{.CLI_ARGS}}
Expand Down
6 changes: 4 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "3.7.0",
"@eslint/js": "^9.33.0",
"@eslint/js": "^8.57.0",
"@mdx-js/typescript-plugin": "^0.0.8",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"eslint": "^9.33.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.1.5",
"prettier": "^3.4.2",
Expand Down
5 changes: 3 additions & 2 deletions emain/emain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,14 @@ let webviewKeys: string[] = []; // the keys to trap when webview has focus
console.log = log;
console.log(
sprintf(
"waveterm-app starting, data_dir=%s, config_dir=%s electronpath=%s gopath=%s arch=%s/%s",
"waveterm-app starting, data_dir=%s, config_dir=%s electronpath=%s gopath=%s arch=%s/%s electron=%s",
waveDataDir,
waveConfigDir,
getElectronAppBasePath(),
getElectronAppUnpackedBasePath(),
unamePlatform,
unameArch
unameArch,
process.versions.electron
)
);
if (isDev) {
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.7",
"@eslint/js": "^9.33.0",
"@eslint/js": "^8.57.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@storybook/addon-essentials": "^8.5.8",
"@storybook/addon-interactions": "^8.5.8",
Expand Down Expand Up @@ -60,12 +60,12 @@
"@types/tinycolor2": "^1",
"@types/uuid": "^10.0.0",
"@types/ws": "^8",
"@vitejs/plugin-react-swc": "^3.8.1",
"@vitejs/plugin-react-swc": "^4.0.0",
"@vitest/coverage-istanbul": "^3.0.9",
"electron": "34.5.8",
"electron": "^37.3.0",
"electron-builder": "^26.0",
"electron-vite": "^2.3.0",
"eslint": "^9.33.0",
"electron-vite": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"node-abi": "^4.6.0",
"postcss": "^8.5.6",
Expand All @@ -84,9 +84,9 @@
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vite": "^6.1.6",
"vite-plugin-image-optimizer": "^1.1.9",
"vite-plugin-static-copy": "^2.2.0",
"vite": "^6.0.0",
"vite-plugin-image-optimizer": "^2.0.2",
"vite-plugin-static-copy": "^3.1.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
Expand Down Expand Up @@ -149,7 +149,7 @@
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^1.3.1",
"rxjs": "^7.8.2",
"sharp": "^0.33.5",
"sharp": "^0.34.0",
"shell-quote": "^1.8.3",
"sprintf-js": "^1.1.3",
"tailwind-merge": "^3.3.1",
Expand All @@ -167,7 +167,8 @@
"esbuild@npm:^0.24.2": "^0.25",
"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0": "^0.25",
"esbuild@npm:^0.21.5": "^0.25",
"esbuild@npm:~0.23.0": "^0.25"
"esbuild@npm:~0.23.0": "^0.25",
"node-abi": "^4.6.0"
},
"packageManager": "yarn@4.6.0",
"workspaces": [
Expand Down
Loading
Loading