diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d286add..25edd76 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { "packages/auth-provider": "1.0.0", - "packages/auth-common": "0.0.0" + "packages/auth-common": "1.0.0" } diff --git a/packages/auth-common/CHANGELOG.md b/packages/auth-common/CHANGELOG.md new file mode 100644 index 0000000..020df82 --- /dev/null +++ b/packages/auth-common/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## 1.0.0 (2024-06-15) + + +### Features + +* adding auth-common to monorepo ([#6](https://github.com/aversini/auth-client/issues/6)) ([055844a](https://github.com/aversini/auth-client/commit/055844a27f8cac8cb88bb9fd6901c38acdbda5ec)) diff --git a/packages/auth-common/package.json b/packages/auth-common/package.json index aef2e44..06cd124 100644 --- a/packages/auth-common/package.json +++ b/packages/auth-common/package.json @@ -1,6 +1,6 @@ { "name": "@versini/auth-common", - "version": "0.0.0", + "version": "1.0.0", "license": "MIT", "author": "Arno Versini", "publishConfig": { @@ -14,7 +14,9 @@ "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build:check": "tsc", "build:js": "vite build",