From 69375f1cb409f60477bc159b78e45e9949323baa Mon Sep 17 00:00:00 2001 From: "alexandre.asselin" Date: Wed, 25 Oct 2023 14:39:42 -0400 Subject: [PATCH 1/3] add changeset --- .changeset/fair-crews-walk.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .changeset/fair-crews-walk.md diff --git a/.changeset/fair-crews-walk.md b/.changeset/fair-crews-walk.md new file mode 100644 index 000000000..166e8b918 --- /dev/null +++ b/.changeset/fair-crews-walk.md @@ -0,0 +1,8 @@ +--- +"@workleap/orbiter-ui": major +"@orbit-ui/transition-components": major +"@orbit-ui/transition-css": major +"@orbit-ui/transition-icons": major +--- + +Initial Release of Orbitter From e48e2ce0d05f8085a3f8a8e409943fc4770611a8 Mon Sep 17 00:00:00 2001 From: "alexandre.asselin" Date: Wed, 25 Oct 2023 14:59:22 -0400 Subject: [PATCH 2/3] update provenance and release notes --- .changeset/fair-crews-walk.md | 2 +- packages/bundle/package.json | 12 +++++++++--- packages/components/package.json | 9 +++++++-- packages/css/package.json | 9 +++++++-- packages/icons/package.json | 9 +++++++-- 5 files changed, 31 insertions(+), 10 deletions(-) diff --git a/.changeset/fair-crews-walk.md b/.changeset/fair-crews-walk.md index 166e8b918..091428bc1 100644 --- a/.changeset/fair-crews-walk.md +++ b/.changeset/fair-crews-walk.md @@ -5,4 +5,4 @@ "@orbit-ui/transition-icons": major --- -Initial Release of Orbitter +Initial Release of Orbiter diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 2c6bc2570..84b3e7f17 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,8 +1,13 @@ { "name": "@workleap/orbiter-ui", - "version": "1.0.0", + "version": "0.0.0", "description": "Orbiter design system", - "repository": "https://github.com/gsoft-inc/wl-orbiter.git", + "repository": { + "type": "git", + "url": "git+https://github.com/gsoft-inc/wl-orbiter.git", + "directory": "packages/bundle" + }, + "author": "Groupe ShareGate inc.", "license": "Apache-2.0", "main": "dist/index.js", @@ -15,7 +20,8 @@ "index.css" ], "publishConfig": { - "access": "public" + "access": "public", + "provenance": true }, "scripts": { "prebuild": "yarn clean", diff --git a/packages/components/package.json b/packages/components/package.json index 7e4f2963a..07f786d65 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -2,7 +2,11 @@ "name": "@orbit-ui/transition-components", "version": "1.0.0", "description": "Orbiter components", - "repository": "https://github.com/gsoft-inc/wl-orbiter.git", + "repository": { + "type": "git", + "url": "git+https://github.com/gsoft-inc/wl-orbiter.git", + "directory": "packages/components" + }, "author": "Groupe Sharegate inc.", "license": "Apache-2.0", "main": "dist/index.js", @@ -15,7 +19,8 @@ "index.css" ], "publishConfig": { - "access": "public" + "access": "public", + "provenance": true }, "scripts": { "prebuild": "yarn clean", diff --git a/packages/css/package.json b/packages/css/package.json index b430d4725..44c9651d1 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -2,12 +2,17 @@ "name": "@orbit-ui/transition-css", "version": "1.0.0", "description": "Orbiter CSS bootstrap", - "repository": "https://github.com/gsoft-inc/wl-orbiter.git", + "repository": { + "type": "git", + "url": "git+https://github.com/gsoft-inc/wl-orbiter.git", + "directory": "packages/css" + }, "author": "Groupe ShareGate inc.", "license": "Apache-2.0", "main": "src/index.css", "style": "src/index.css", "publishConfig": { - "access": "public" + "access": "public", + "provenance": true } } diff --git a/packages/icons/package.json b/packages/icons/package.json index b26e93912..e13939c56 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -2,14 +2,19 @@ "name": "@orbit-ui/transition-icons", "version": "1.0.0", "description": "Orbiter icons", - "repository": "https://github.com/gsoft-inc/wl-orbiter.git", + "repository": { + "type": "git", + "url": "git+https://github.com/gsoft-inc/wl-orbiter.git", + "directory": "packages/icons" + }, "author": "Groupe Sharegate inc.", "license": "Apache-2.0", "files": [ "/dist" ], "publishConfig": { - "access": "public" + "access": "public", + "provenance": true }, "scripts": { "start": "yarn write-icons", From 13012bcc8e5ecba7c46892e4584dcf20576ebc9f Mon Sep 17 00:00:00 2001 From: Alexandre Asselin Date: Wed, 25 Oct 2023 15:13:52 -0400 Subject: [PATCH 3/3] Update changeset.yml --- .github/workflows/changeset.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/changeset.yml b/.github/workflows/changeset.yml index a444f2613..e9ce9ea3e 100644 --- a/.github/workflows/changeset.yml +++ b/.github/workflows/changeset.yml @@ -40,5 +40,5 @@ jobs: # This expects you to have a script called release which does a build for your packages and calls changeset publish publish: npm run release env: - NPM_TOKEN: ${{ secrets.SHAREGATE_NPM_TOKEN }} + NPM_TOKEN: ${{ secrets.WORKLEAP_NPM_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}