Skip to content

Commit

Permalink
Merge pull request #42 from gsoft-inc/feature/initial_release
Browse files Browse the repository at this point in the history
add changeset
  • Loading branch information
alexasselin008 authored Oct 25, 2023
2 parents 4e9246a + 13012bc commit ef3c18a
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 10 deletions.
8 changes: 8 additions & 0 deletions .changeset/fair-crews-walk.md
Original file line number Diff line number Diff line change
@@ -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 Orbiter
2 changes: 1 addition & 1 deletion .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
12 changes: 9 additions & 3 deletions packages/bundle/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -15,7 +20,8 @@
"index.css"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"scripts": {
"prebuild": "yarn clean",
Expand Down
9 changes: 7 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -15,7 +19,8 @@
"index.css"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"scripts": {
"prebuild": "yarn clean",
Expand Down
9 changes: 7 additions & 2 deletions packages/css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
9 changes: 7 additions & 2 deletions packages/icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit ef3c18a

Please sign in to comment.