[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio linux macos music tagger tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Do more things in `npm run check`

Kasper (Dec 30, 2021, 10:41 PM +0100) ef83047b be98235f

+7 -10
+5 -7
README.md
··· 19 19 20 20 ## Dev instructions 21 21 22 - 1. Install Node.js (v14 works) 23 - 2. Install Rust (v1.54 works) 22 + 1. Install Node.js 23 + 2. Install Rust 24 24 3. Follow the [Tauri setup guide](https://tauri.studio/en/docs/getting-started/intro) 25 25 4. Run `npm install` 26 26 27 27 ### Commands 28 28 - `npm run dev`: Start app in dev mode 29 29 - `npm run build`: Build 30 - - `npm run lint`: Lint 30 + - `npm run format`: Format 31 + - `npm run check`: Check code 31 32 32 33 ### Release new version 33 34 1. Update `CHANGELOG.md` 34 35 2. Manually bump the version number in `src-tauri/Cargo.toml` 35 - 3. Check for errors and bump the `Cargo.lock` version number 36 - ``` 37 - cargo check --manifest-path src-tauri/Cargo.toml 38 - ``` 36 + 3. Run `npm run check` to make sure `Cargo.lock` is up to date 39 37 4. Commit with a tag in the format `v#.#.#` 40 38 5. Add release notes to the generated GitHub release and publish it
+2 -3
package.json
··· 8 8 "build:web": "vite build", 9 9 "preview": "vite preview", 10 10 "test": "cargo test --manifest-path ./src-tauri/Cargo.toml", 11 - "check": "svelte-check", 12 - "lint": "prettier --check *.js src", 13 - "format": "prettier --write *.js src" 11 + "format": "prettier --write *.js src", 12 + "check": "eslint src *.js && svelte-check && cargo check --manifest-path src-tauri/Cargo.toml" 14 13 }, 15 14 "devDependencies": { 16 15 "@sveltejs/vite-plugin-svelte": "1.0.0-next.19",