From a298ea60fe179286685ae178d0f8102fc643c9bb Mon Sep 17 00:00:00 2001 From: Przemyslaw Bak Date: Mon, 20 Nov 2023 12:29:41 +0100 Subject: [PATCH 1/3] feat: set package private value to false --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 954a6c8..996c536 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "author": "The Software House", "license": "ISC", "description": "TSH Frontend Components", - "private": true, + "private": false, "version": "0.0.0", "type": "module", "publishConfig": { "access": "public" }, From 260b1aa6ff5367723e83560499bf769b1e507d40 Mon Sep 17 00:00:00 2001 From: Przemyslaw Bak Date: Mon, 20 Nov 2023 12:41:53 +0100 Subject: [PATCH 2/3] ci: update publish to npm workflow --- .github/workflows/publish-npm.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 6e2b464..8a2d975 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -7,11 +7,10 @@ jobs: runs-on: ubuntu-latest environment: staging steps: - - uses: actions/checkout@v2 - - name: Setup Node.js 18 - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: '20.x' registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm ci From 16b483fbe1f216dbb7c015de6d84cfbe68199496 Mon Sep 17 00:00:00 2001 From: Przemyslaw Bak Date: Mon, 20 Nov 2023 14:55:31 +0100 Subject: [PATCH 3/3] feat: add repository property to package.json --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index e987546..5dcbeb4 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,10 @@ "files": [ "*" ], + "repository": { + "type": "git", + "url": "git://github.com/TheSoftwareHouse/tsh-frontend-components-catalog.git" + }, "scripts": { "test": "jest --passWithNoTests", "lint": "eslint \"./packages/**/*.{ts,tsx}\" && stylelint --allow-empty-input \"./packages/**/*.{css,pcss,scss}\" && echo \"lint success\"",