diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c0cf563..59fd0a3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -494,6 +494,9 @@ importers: utils/prettier-config: devDependencies: + '@favware/cliff-jumper': + specifier: ^6.0.0 + version: 6.0.0 '@trivago/prettier-plugin-sort-imports': specifier: ^6.0.0 version: 6.0.0(prettier@3.7.4) diff --git a/utils/prettier-config/CHANGELOG.md b/utils/prettier-config/CHANGELOG.md new file mode 100644 index 0000000..16c5b46 --- /dev/null +++ b/utils/prettier-config/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +# [@nanoforge-dev/utils-prettier-config@1.0.1](https://github.com/NanoForge-dev/Engine/tree/@nanoforge-dev/utils-prettier-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/prettier-config/package.json b/utils/prettier-config/package.json index de0525a..14bf412 100644 --- a/utils/prettier-config/package.json +++ b/utils/prettier-config/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@nanoforge-dev/utils-prettier-config", - "version": "1.0.0", + "version": "1.0.1", "description": "NanoForge Engine - Utils Prettier Config", "homepage": "https://github.com/NanoForge-dev/Engine#readme", "bugs": "https://github.com/NanoForge-dev/Engine/issues", @@ -37,9 +37,13 @@ "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/prettier-config/*'", + "release": "cliff-jumper" }, "devDependencies": { + "@favware/cliff-jumper": "^6.0.0", "@trivago/prettier-plugin-sort-imports": "^6.0.0", "prettier": "^3.6.2" },