From ce20cc60ae60f47062502b9ee421511974836a7c Mon Sep 17 00:00:00 2001 From: Arno V Date: Mon, 16 Sep 2024 09:48:09 -0400 Subject: [PATCH] chore: release main (#640) :rocket: Automated Release ---
ui-anchor: 1.0.0 ## 1.0.0 (2024-09-16) ### Features * **Anchor:** extracting Anchor as a standalone package ([#639](https://github.com/versini-org/ui-components/issues/639)) ([1e65737](https://github.com/versini-org/ui-components/commit/1e657371733c204c578cc7925bc7336fc5c1b046))
--- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- .release-please-manifest.json | 2 +- packages/ui-anchor/CHANGELOG.md | 8 ++++++++ packages/ui-anchor/package.json | 10 +++++++--- 3 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 packages/ui-anchor/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ec9c1133..96242289 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -8,5 +8,5 @@ "packages/ui-form": "1.3.12", "packages/ui-fingerprint": "1.0.1", "packages/ui-button": "1.0.1", - "packages/ui-anchor": "0.0.0" + "packages/ui-anchor": "1.0.0" } diff --git a/packages/ui-anchor/CHANGELOG.md b/packages/ui-anchor/CHANGELOG.md new file mode 100644 index 00000000..530f3a71 --- /dev/null +++ b/packages/ui-anchor/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## 1.0.0 (2024-09-16) + + +### Features + +* **Anchor:** extracting Anchor as a standalone package ([#639](https://github.com/versini-org/ui-components/issues/639)) ([1e65737](https://github.com/versini-org/ui-components/commit/1e657371733c204c578cc7925bc7336fc5c1b046)) diff --git a/packages/ui-anchor/package.json b/packages/ui-anchor/package.json index 4a433e94..8ae83737 100644 --- a/packages/ui-anchor/package.json +++ b/packages/ui-anchor/package.json @@ -1,6 +1,6 @@ { "name": "@versini/ui-anchor", - "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", @@ -48,5 +50,7 @@ "clsx": "2.1.1", "tailwindcss": "3.4.11" }, - "sideEffects": ["**/*.css"] + "sideEffects": [ + "**/*.css" + ] }