From 36f12474bfe2d5e2d1ba8508cdf9e95ffbda78d6 Mon Sep 17 00:00:00 2001 From: Vanessa Tran Date: Wed, 8 Jan 2025 07:56:15 -0700 Subject: [PATCH] fix(#2991): update ui-components-common package to be public with its package description --- libs/common/.releaserc.json | 3 ++- libs/common/package.json | 19 ++++++++++++++++++- libs/common/src/lib/common.ts | 2 -- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/libs/common/.releaserc.json b/libs/common/.releaserc.json index ec6ed0c95..aa4a53d1c 100644 --- a/libs/common/.releaserc.json +++ b/libs/common/.releaserc.json @@ -11,7 +11,8 @@ [ "@semantic-release/npm", { - "pkgRoot": "dist/libs/common" + "pkgRoot": "dist/libs/common", + "npmPublish": true } ], "@semantic-release/github" diff --git a/libs/common/package.json b/libs/common/package.json index b33505c94..3f837caf9 100644 --- a/libs/common/package.json +++ b/libs/common/package.json @@ -1,8 +1,25 @@ { "name": "@abgov/ui-components-common", "version": "0.0.0", + "bugs": { + "url": "https://github.com/GovAlta/ui-components/issues" + }, + "keywords": [ + "Goab", + "ui-components", + "common" + ], + "repository": { + "type": "git", + "url": "https://github.com/GovAlta/ui-components.git", + "directory": "libs/common" + }, + "license": "Apache-2.0", "description": "Government of Alberta - UI Web components", "type": "module", "main": "./index.js", - "module": "./index.js" + "module": "./index.js", + "publishConfig": { + "access": "public" + } } diff --git a/libs/common/src/lib/common.ts b/libs/common/src/lib/common.ts index bcd74c1e1..da6349268 100644 --- a/libs/common/src/lib/common.ts +++ b/libs/common/src/lib/common.ts @@ -132,8 +132,6 @@ export type GoabButtonGroupGap = "relaxed" | "compact"; export type GoabAccordionHeadingSize = "small" | "medium"; export type GoabAccordionIconPosition = "left" | "right"; -// Formstepper - // Tooltip export type GoabTooltipPosition = "top" | "bottom" | "left" | "right";