Skip to content

Commit 1e00cce

Browse files
chore: merge and resolve conflict
2 parents 12526b8 + 0a2924a commit 1e00cce

30 files changed

Lines changed: 2356 additions & 546 deletions

.github/workflows/release.yml

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,37 @@ jobs:
2424

2525
- name: Setup Pantry
2626
uses: home-lang/pantry/packages/action@main
27+
with:
28+
token: ${{ secrets.PANTRY_TOKEN }}
2729

2830
- name: Install Dependencies
2931
run: bun install
3032

31-
- name: Publish
33+
- name: Build
34+
run: cd packages/crosswind && bun run build
35+
36+
- name: Cross-compile Binaries
37+
run: cd packages/crosswind && bun run compile:all
38+
39+
- name: Package Binaries
40+
run: cd packages/crosswind && bun run zip:all
41+
42+
- name: Publish to npm
3243
run: pantry publish --npm --access public
3344
env:
3445
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
46+
PANTRY_REGISTRY_TOKEN: ${{ secrets.PANTRY_TOKEN }}
3547

3648
- name: Create GitHub Release
37-
uses: stacksjs/action-releaser@v1.2.9
38-
env:
39-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
uses: home-lang/pantry/packages/action@main
50+
with:
51+
install: 'false'
52+
release: 'true'
53+
release-files: |
54+
packages/crosswind/bin/crosswind-linux-x64.zip
55+
packages/crosswind/bin/crosswind-linux-arm64.zip
56+
packages/crosswind/bin/crosswind-windows-x64.zip
57+
packages/crosswind/bin/crosswind-darwin-x64.zip
58+
packages/crosswind/bin/crosswind-darwin-arm64.zip
59+
release-changelog: CHANGELOG.md
60+
release-token: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,126 @@
1+
[Compare changes](https://github.com/cwcss/crosswind/compare/v0.1.6...v0.2.0)
2+
3+
### 🚀 Features
4+
5+
- improve arbitrary values ([9c6af1e](https://github.com/cwcss/crosswind/commit/9c6af1e))
6+
- handle arbitrary bracket opacity on named colors ([af6f0f3](https://github.com/cwcss/crosswind/commit/af6f0f3))
7+
8+
### 🐛 Bug Fixes
9+
10+
- resolve typecheck errors ([8876156](https://github.com/cwcss/crosswind/commit/8876156))
11+
- resolve typecheck errors ([18bbc68](https://github.com/cwcss/crosswind/commit/18bbc68))
12+
13+
### 🧹 Chores
14+
15+
- release v0.2.0 ([74a6cfa](https://github.com/cwcss/crosswind/commit/74a6cfa))
16+
- update lockfile ([a95e37f](https://github.com/cwcss/crosswind/commit/a95e37f))
17+
- release updates ([c3908da](https://github.com/cwcss/crosswind/commit/c3908da))
18+
- adjust test ([ce9472c](https://github.com/cwcss/crosswind/commit/ce9472c))
19+
- repo cleanup and modernization ([9f1d450](https://github.com/cwcss/crosswind/commit/9f1d450))
20+
- repo cleanup and modernization ([f5e5369](https://github.com/cwcss/crosswind/commit/f5e5369))
21+
- remove unocss ([4446ec1](https://github.com/cwcss/crosswind/commit/4446ec1))
22+
- remove @stacksjs/docs ([8ca150e](https://github.com/cwcss/crosswind/commit/8ca150e))
23+
- remove redundant docs/.vitepress ([9496179](https://github.com/cwcss/crosswind/commit/9496179))
24+
- use Pantry action for publish-commit and add job dependencies ([35b820a](https://github.com/cwcss/crosswind/commit/35b820a))
25+
- fix better-dx version to ^0.2.7 ([4afffd7](https://github.com/cwcss/crosswind/commit/4afffd7))
26+
- migrate to better-dx ([2489f19](https://github.com/cwcss/crosswind/commit/2489f19))
27+
- wip ([c636898](https://github.com/cwcss/crosswind/commit/c636898))
28+
- remove file ignores from pickier config ([2d048d6](https://github.com/cwcss/crosswind/commit/2d048d6))
29+
- add CLAUDE.md and CHANGELOG.md to pickier ignores ([4cfef69](https://github.com/cwcss/crosswind/commit/4cfef69))
30+
- fix lint warnings ([a5cba77](https://github.com/cwcss/crosswind/commit/a5cba77))
31+
- remove .pickierignore ([b7ba810](https://github.com/cwcss/crosswind/commit/b7ba810))
32+
- update better-dx to ^0.2.7 ([1f8781a](https://github.com/cwcss/crosswind/commit/1f8781a))
33+
- enrich CLAUDE.md with detailed project context from README ([2d63389](https://github.com/cwcss/crosswind/commit/2d63389))
34+
- update CLAUDE.md with project context and crosswind details ([b904cf8](https://github.com/cwcss/crosswind/commit/b904cf8))
35+
- add proper claude code guidelines ([5a9eda4](https://github.com/cwcss/crosswind/commit/5a9eda4))
36+
- use pantry monorepo action instead of pantry-setup ([521ecd4](https://github.com/cwcss/crosswind/commit/521ecd4))
37+
- ignore claude config in linter ([0661f46](https://github.com/cwcss/crosswind/commit/0661f46))
38+
- add claude code guidelines ([083b738](https://github.com/cwcss/crosswind/commit/083b738))
39+
- wip ([2c27184](https://github.com/cwcss/crosswind/commit/2c27184))
40+
- wip ([8737237](https://github.com/cwcss/crosswind/commit/8737237))
41+
- wip ([ac03495](https://github.com/cwcss/crosswind/commit/ac03495))
42+
- wip ([a9b683a](https://github.com/cwcss/crosswind/commit/a9b683a))
43+
- wip ([decfd0c](https://github.com/cwcss/crosswind/commit/decfd0c))
44+
- wip ([73a2c17](https://github.com/cwcss/crosswind/commit/73a2c17))
45+
- wip ([82f534d](https://github.com/cwcss/crosswind/commit/82f534d))
46+
- wip ([e02936f](https://github.com/cwcss/crosswind/commit/e02936f))
47+
- wip ([29df3e3](https://github.com/cwcss/crosswind/commit/29df3e3))
48+
- wip ([06de5a7](https://github.com/cwcss/crosswind/commit/06de5a7))
49+
- wip ([d62a10b](https://github.com/cwcss/crosswind/commit/d62a10b))
50+
- wip ([686497b](https://github.com/cwcss/crosswind/commit/686497b))
51+
- wip ([c8e4b32](https://github.com/cwcss/crosswind/commit/c8e4b32))
52+
- wip ([e8abd7b](https://github.com/cwcss/crosswind/commit/e8abd7b))
53+
- wip ([1734035](https://github.com/cwcss/crosswind/commit/1734035))
54+
- wip ([9f100ba](https://github.com/cwcss/crosswind/commit/9f100ba))
55+
- wip ([592599c](https://github.com/cwcss/crosswind/commit/592599c))
56+
- wip ([c3bea5d](https://github.com/cwcss/crosswind/commit/c3bea5d))
57+
58+
### Contributors
59+
60+
- Chris <chrisbreuer93@gmail.com>
61+
- glennmichael123 <gtorregosa@gmail.com>
62+
63+
[Compare changes](https://github.com/cwcss/crosswind/compare/v0.1.6...HEAD)
64+
65+
### 🚀 Features
66+
67+
- improve arbitrary values ([9c6af1e](https://github.com/cwcss/crosswind/commit/9c6af1e))
68+
- handle arbitrary bracket opacity on named colors ([af6f0f3](https://github.com/cwcss/crosswind/commit/af6f0f3))
69+
70+
### 🐛 Bug Fixes
71+
72+
- resolve typecheck errors ([8876156](https://github.com/cwcss/crosswind/commit/8876156))
73+
- resolve typecheck errors ([18bbc68](https://github.com/cwcss/crosswind/commit/18bbc68))
74+
75+
### 🧹 Chores
76+
77+
- update lockfile ([a95e37f](https://github.com/cwcss/crosswind/commit/a95e37f))
78+
- release updates ([c3908da](https://github.com/cwcss/crosswind/commit/c3908da))
79+
- adjust test ([ce9472c](https://github.com/cwcss/crosswind/commit/ce9472c))
80+
- repo cleanup and modernization ([9f1d450](https://github.com/cwcss/crosswind/commit/9f1d450))
81+
- repo cleanup and modernization ([f5e5369](https://github.com/cwcss/crosswind/commit/f5e5369))
82+
- remove unocss ([4446ec1](https://github.com/cwcss/crosswind/commit/4446ec1))
83+
- remove @stacksjs/docs ([8ca150e](https://github.com/cwcss/crosswind/commit/8ca150e))
84+
- remove redundant docs/.vitepress ([9496179](https://github.com/cwcss/crosswind/commit/9496179))
85+
- use Pantry action for publish-commit and add job dependencies ([35b820a](https://github.com/cwcss/crosswind/commit/35b820a))
86+
- fix better-dx version to ^0.2.7 ([4afffd7](https://github.com/cwcss/crosswind/commit/4afffd7))
87+
- migrate to better-dx ([2489f19](https://github.com/cwcss/crosswind/commit/2489f19))
88+
- wip ([c636898](https://github.com/cwcss/crosswind/commit/c636898))
89+
- remove file ignores from pickier config ([2d048d6](https://github.com/cwcss/crosswind/commit/2d048d6))
90+
- add CLAUDE.md and CHANGELOG.md to pickier ignores ([4cfef69](https://github.com/cwcss/crosswind/commit/4cfef69))
91+
- fix lint warnings ([a5cba77](https://github.com/cwcss/crosswind/commit/a5cba77))
92+
- remove .pickierignore ([b7ba810](https://github.com/cwcss/crosswind/commit/b7ba810))
93+
- update better-dx to ^0.2.7 ([1f8781a](https://github.com/cwcss/crosswind/commit/1f8781a))
94+
- enrich CLAUDE.md with detailed project context from README ([2d63389](https://github.com/cwcss/crosswind/commit/2d63389))
95+
- update CLAUDE.md with project context and crosswind details ([b904cf8](https://github.com/cwcss/crosswind/commit/b904cf8))
96+
- add proper claude code guidelines ([5a9eda4](https://github.com/cwcss/crosswind/commit/5a9eda4))
97+
- use pantry monorepo action instead of pantry-setup ([521ecd4](https://github.com/cwcss/crosswind/commit/521ecd4))
98+
- ignore claude config in linter ([0661f46](https://github.com/cwcss/crosswind/commit/0661f46))
99+
- add claude code guidelines ([083b738](https://github.com/cwcss/crosswind/commit/083b738))
100+
- wip ([2c27184](https://github.com/cwcss/crosswind/commit/2c27184))
101+
- wip ([8737237](https://github.com/cwcss/crosswind/commit/8737237))
102+
- wip ([ac03495](https://github.com/cwcss/crosswind/commit/ac03495))
103+
- wip ([a9b683a](https://github.com/cwcss/crosswind/commit/a9b683a))
104+
- wip ([decfd0c](https://github.com/cwcss/crosswind/commit/decfd0c))
105+
- wip ([73a2c17](https://github.com/cwcss/crosswind/commit/73a2c17))
106+
- wip ([82f534d](https://github.com/cwcss/crosswind/commit/82f534d))
107+
- wip ([e02936f](https://github.com/cwcss/crosswind/commit/e02936f))
108+
- wip ([29df3e3](https://github.com/cwcss/crosswind/commit/29df3e3))
109+
- wip ([06de5a7](https://github.com/cwcss/crosswind/commit/06de5a7))
110+
- wip ([d62a10b](https://github.com/cwcss/crosswind/commit/d62a10b))
111+
- wip ([686497b](https://github.com/cwcss/crosswind/commit/686497b))
112+
- wip ([c8e4b32](https://github.com/cwcss/crosswind/commit/c8e4b32))
113+
- wip ([e8abd7b](https://github.com/cwcss/crosswind/commit/e8abd7b))
114+
- wip ([1734035](https://github.com/cwcss/crosswind/commit/1734035))
115+
- wip ([9f100ba](https://github.com/cwcss/crosswind/commit/9f100ba))
116+
- wip ([592599c](https://github.com/cwcss/crosswind/commit/592599c))
117+
- wip ([c3bea5d](https://github.com/cwcss/crosswind/commit/c3bea5d))
118+
119+
### Contributors
120+
121+
- Chris <chrisbreuer93@gmail.com>
122+
- glennmichael123 <gtorregosa@gmail.com>
123+
1124
[Compare changes](https://github.com/cwcss/crosswind/compare/v0.1.4...v0.1.5)
2125

3126
### 🧹 Chores

0 commit comments

Comments
 (0)