diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c0cf563..7ab1742 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -460,6 +460,9 @@ importers: '@eslint/js': specifier: ^9.39.1 version: 9.39.1 + '@favware/cliff-jumper': + specifier: ^6.0.0 + version: 6.0.0 eslint-config-prettier: specifier: ^10.1.8 version: 10.1.8(eslint@9.39.1(jiti@2.6.1)) diff --git a/utils/eslint-config/CHANGELOG.md b/utils/eslint-config/CHANGELOG.md new file mode 100644 index 0000000..0ac7d7e --- /dev/null +++ b/utils/eslint-config/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +# [@nanoforge-dev/utils-eslint-config@1.0.1](https://github.com/NanoForge-dev/Engine/tree/@nanoforge-dev/utils-eslint-config@1.0.1) - (2025-12-07) + +## Documentation + +- Add funding (#147) ([7301fad](https://github.com/NanoForge-dev/Engine/commit/7301fad10f59b7e1f7fa788f8a2f6fc81d0db72e)) by @Exeloo + +## Refactor + +- Migrate namespaces to `@nanoforge-dev` and update related imports ([c84c927](https://github.com/NanoForge-dev/Engine/commit/c84c927ead941d914e5a9fd752fd3a5ac969f981)) by @Exeloo + diff --git a/utils/eslint-config/package.json b/utils/eslint-config/package.json index e1a1c80..4dad728 100644 --- a/utils/eslint-config/package.json +++ b/utils/eslint-config/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@nanoforge-dev/utils-eslint-config", - "version": "1.0.0", + "version": "1.0.1", "description": "NanoForge Engine - Utils EsLint Config", "homepage": "https://github.com/NanoForge-dev/Engine#readme", "bugs": "https://github.com/NanoForge-dev/Engine/issues", @@ -37,10 +37,14 @@ "funding": "https://github.com/NanoForge-dev/Engine?sponsor", "scripts": { "lint": "prettier --check .", - "format": "prettier --write ." + "format": "prettier --write .", + "prepack": "pnpm run lint", + "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'utils/eslint-config/*'", + "release": "cliff-jumper" }, "dependencies": { "@eslint/js": "^9.39.1", + "@favware/cliff-jumper": "^6.0.0", "eslint-config-prettier": "^10.1.8", "eslint-formatter-pretty": "^7.0.0", "eslint-plugin-format": "^1.0.2",