diff --git a/CHANGELOG.md b/CHANGELOG.md index 79bf3e0..f5fb3b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [2024-10-03] [mod lint script](https://github.com/RubricLab/memory/commit/e5a4392d2e7852f0d1424f730aa1316bfeb66f3b) - [2024-10-03] [gitignore turbo, format](https://github.com/RubricLab/memory/commit/fd8aedfe7144de98f9a405305e3b82839084fab7) # Changelog diff --git a/package.json b/package.json index 0bd9e6b..66066ff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@rubriclab/memory", "module": "index.ts", - "version": "0.0.1", + "version": "0.0.2", "private": false, "type": "module", "devDependencies": { @@ -25,7 +25,7 @@ "bleed": "bun x npm-check-updates -u && bun i", "clean": "rm -rf .next && rm -rf node_modules", "format": "bun x biome format --write .", - "lint": "bun x biome check .", - "lint:fix": "bun x biome lint . --write --unsafe" + "lint": "bun x biome check . && bun x biome lint .", + "lint:fix": "bun x biome check --fix --unsafe . && bun x biome lint --write --unsafe ." } }