Skip to content

Commit

Permalink
[ci] release (#239)
Browse files Browse the repository at this point in the history
* [ci] release

* Fix busted versions

* Update to pnpm action v3

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Drew Powers <drew@pow.rs>
  • Loading branch information
3 people authored Mar 30, 2024
1 parent 4b02c6b commit 47df2a5
Show file tree
Hide file tree
Showing 16 changed files with 59 additions and 41 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-coins-tickle.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fuzzy-chefs-doubt.md

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 8
- run: pnpm i
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 8
- run: pnpm i
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
node-version: 20
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 8
- run: pnpm i
Expand All @@ -22,8 +22,8 @@ jobs:
with:
version: pnpm run version
publish: pnpm exec changeset publish
commit: '[ci] release'
title: '[ci] release'
commit: "[ci] release"
title: "[ci] release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @cobalt-ui/cli

## 1.11.0

### Minor Changes

- [#238](https://github.com/drwpow/cobalt-ui/pull/238) [`4b02c6bde0067950cbcb7b81163488c45bbc65c9`](https://github.com/drwpow/cobalt-ui/commit/4b02c6bde0067950cbcb7b81163488c45bbc65c9) Thanks [@drwpow](https://github.com/drwpow)! - Add core lint rules

### Patch Changes

- Updated dependencies [[`4b02c6bde0067950cbcb7b81163488c45bbc65c9`](https://github.com/drwpow/cobalt-ui/commit/4b02c6bde0067950cbcb7b81163488c45bbc65c9), [`4b02c6bde0067950cbcb7b81163488c45bbc65c9`](https://github.com/drwpow/cobalt-ui/commit/4b02c6bde0067950cbcb7b81163488c45bbc65c9)]:
- @cobalt-ui/utils@1.2.6
- @cobalt-ui/core@1.11.0

## 1.10.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cobalt-ui/cli",
"description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
"version": "1.10.2",
"version": "1.11.0",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
Expand Down Expand Up @@ -46,8 +46,8 @@
"test:ts": "tsc --noEmit"
},
"dependencies": {
"@cobalt-ui/core": "^1.10.2",
"@cobalt-ui/utils": "^1.2.5",
"@cobalt-ui/core": "^1.11.0",
"@cobalt-ui/utils": "^1.2.6",
"chokidar": "^3.6.0",
"culori": "^3.3.0",
"dotenv": "^16.4.5",
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @cobalt-ui/core

## 1.11.0

### Minor Changes

- [#238](https://github.com/drwpow/cobalt-ui/pull/238) [`4b02c6bde0067950cbcb7b81163488c45bbc65c9`](https://github.com/drwpow/cobalt-ui/commit/4b02c6bde0067950cbcb7b81163488c45bbc65c9) Thanks [@drwpow](https://github.com/drwpow)! - Add core lint rules

### Patch Changes

- Updated dependencies [[`4b02c6bde0067950cbcb7b81163488c45bbc65c9`](https://github.com/drwpow/cobalt-ui/commit/4b02c6bde0067950cbcb7b81163488c45bbc65c9)]:
- @cobalt-ui/utils@1.2.6

## 1.10.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cobalt-ui/core",
"description": "Parser/validator for the Design Tokens Community Group (DTCG) standard.",
"version": "1.10.2",
"version": "1.11.0",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
Expand Down Expand Up @@ -44,7 +44,7 @@
"test:ts": "tsc --noEmit"
},
"dependencies": {
"@cobalt-ui/utils": "^1.2.5",
"@cobalt-ui/utils": "^1.2.6",
"@types/culori": "^2.1.0",
"@types/deep-equal": "^1.0.4",
"culori": "^4.0.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/lint-a11y/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "^1.10.2"
"@cobalt-ui/cli": "^1.11.0"
},
"dependencies": {
"@cobalt-ui/core": "^1.10.2",
"@cobalt-ui/utils": "^1.2.5",
"@cobalt-ui/core": "^1.11.0",
"@cobalt-ui/utils": "^1.2.6",
"apca-w3": "^0.1.9",
"culori": "^4.0.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "^1.10.2"
"@cobalt-ui/cli": "^1.11.0"
},
"dependencies": {
"@cobalt-ui/utils": "^1.2.5",
"@cobalt-ui/utils": "^1.2.6",
"@types/culori": "^2.1.0",
"@types/mime": "^3.0.4",
"culori": "^3.3.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "1.10.2"
"@cobalt-ui/cli": "1.11.0"
},
"dependencies": {
"@cobalt-ui/utils": "^1.2.5"
"@cobalt-ui/utils": "^1.2.6"
},
"devDependencies": {
"@cobalt-ui/cli": "workspace:^",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-sass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"@cobalt-ui/cli": "^1.10.2",
"@cobalt-ui/cli": "^1.11.0",
"@cobalt-ui/plugin-css": "^1.7.3"
},
"dependencies": {
"@cobalt-ui/utils": "^1.2.5",
"@cobalt-ui/utils": "^1.2.6",
"@types/mime": "^3.0.4",
"mime": "^3.0.0",
"svgo": "^3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"@cobalt-ui/plugin-css": "^1.7.3",
"@cobalt-ui/utils": "^1.2.5"
"@cobalt-ui/utils": "^1.2.6"
},
"devDependencies": {
"@cobalt-ui/cli": "workspace:^",
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @cobalt-ui/utils

## 1.2.6

### Patch Changes

- [#238](https://github.com/drwpow/cobalt-ui/pull/238) [`4b02c6bde0067950cbcb7b81163488c45bbc65c9`](https://github.com/drwpow/cobalt-ui/commit/4b02c6bde0067950cbcb7b81163488c45bbc65c9) Thanks [@drwpow](https://github.com/drwpow)! - Add additional helper utils

## 1.2.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cobalt-ui/utils",
"description": "Generic codegen utilities",
"version": "1.2.5",
"version": "1.2.6",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
Expand Down
18 changes: 9 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 47df2a5

Please sign in to comment.