Skip to content
Merged

Dev1 #104

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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
# we specify bash to get pipefail; it guards against the `curl` command
# failing. otherwise `sh` won't catch that `curl` returned non-0
shell: bash
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.4/cargo-dist-installer.sh | sh"
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.31.0/cargo-dist-installer.sh | sh"
- name: Cache dist
uses: actions/upload-artifact@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ version = "0.1.0"
edition = "2024"

[dependencies]
clap = { version = "4.5.19", features = ["derive"] }
clap = { version = "4", features = ["derive"] }
cmd_lib = "2.0.0"
current_platform = "0.2.0"
dunce = "1.0.5"
Expand Down
6 changes: 6 additions & 0 deletions client/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"
import eslint from "@eslint/js";
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";
import globals from "globals";

export default defineConfig(
eslint.configs.recommended,
Expand All @@ -34,6 +35,11 @@ export default defineConfig(
},
{
name: "local",
languageOptions: {
globals: {
...globals.browser
}
},
rules: {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
Expand Down
39 changes: 20 additions & 19 deletions client/package.json5
Original file line number Diff line number Diff line change
Expand Up @@ -45,53 +45,54 @@
type: 'module',
version: '0.1.51',
dependencies: {
'@codemirror/commands': '^6.10.2',
'@codemirror/commands': '^6.10.3',
'@codemirror/lang-cpp': '^6.0.3',
'@codemirror/lang-css': '^6.3.1',
'@codemirror/lang-go': '^6.0.1',
'@codemirror/lang-html': '^6.4.11',
'@codemirror/lang-java': '^6.0.2',
'@codemirror/lang-javascript': '^6.2.4',
'@codemirror/lang-javascript': '^6.2.5',
'@codemirror/lang-json': '^6.0.2',
'@codemirror/lang-markdown': '^6.5.0',
'@codemirror/lang-php': '^6.0.2',
'@codemirror/lang-python': '^6.2.1',
'@codemirror/lang-rust': '^6.0.2',
'@codemirror/lang-sql': '^6.10.0',
'@codemirror/lang-xml': '^6.1.0',
'@codemirror/lang-yaml': '^6.1.2',
'@codemirror/state': '^6.5.4',
'@codemirror/lang-yaml': '^6.1.3',
'@codemirror/state': '^6.6.0',
'@codemirror/view': '6.38.8',
'@hpcc-js/wasm-graphviz': '^1.21.0',
'@mathjax/mathjax-newcm-font': '^4.1.0',
'@hpcc-js/wasm-graphviz': '^1.21.2',
'@mathjax/mathjax-newcm-font': '^4.1.1',
codemirror: '^6.0.2',
mathjax: '^4.1.0',
mermaid: '^11.12.3',
'npm-check-updates': '^19.3.2',
'pdfjs-dist': '^5.4.624',
tinymce: '^8.3.2',
mathjax: '^4.1.1',
mermaid: '^11.13.0',
'pdfjs-dist': '5.4.624',
tinymce: '^8.4.0',
'toastify-js': '^1.12.0',
},
devDependencies: {
'@eslint/js': '^10.0.1',
'@types/chai': '^5.2.3',
'@types/dom-navigation': '^1.0.6',
'@types/dom-navigation': '^1.0.7',
'@types/js-beautify': '^1.14.3',
'@types/mocha': '^10.0.10',
'@types/node': '^24.10.13',
'@types/node': '^24.12.0',
'@types/toastify-js': '^1.12.4',
'@typescript-eslint/eslint-plugin': '^8.56.0',
'@typescript-eslint/parser': '^8.56.0',
'@typescript-eslint/eslint-plugin': '^8.58.0',
'@typescript-eslint/parser': '^8.58.0',
chai: '^6.2.2',
esbuild: '^0.27.3',
eslint: '^10.0.0',
esbuild: '^0.27.4',
eslint: '^10.1.0',
'eslint-config-prettier': '^10.1.8',
'eslint-plugin-import': '^2.32.0',
'eslint-plugin-prettier': '^5.5.5',
globals: '^17.4.0',
mocha: '^11.7.5',
'npm-check-updates': '^20.0.0',
prettier: '^3.8.1',
typescript: '^5.9.3',
'typescript-eslint': '^8.56.0',
typescript: '^6.0.2',
'typescript-eslint': '^8.58.0',
},
scripts: {
test: 'echo "Error: no test specified" && exit 1',
Expand Down
Loading
Loading