Skip to content

Commit f3447e0

Browse files
committed
Merge branch 'main' into unsupported-values
2 parents 77659b4 + bf09744 commit f3447e0

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

.github/demo-dark.png

-30.8 KB
Binary file not shown.

.github/demo-light.png

-31.1 KB
Binary file not shown.

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ jobs:
9999
run: make release-static
100100

101101
- name: Upload artifacts for ${{ matrix.os }}
102-
uses: actions/upload-artifact@v3
102+
uses: actions/upload-artifact@v4
103103
with:
104104
name: ${{ matrix.os }}
105105
path: _build/default/packages/bin/bin.exe
106106

107107
- name: Upload runtime artifacts for @davesnx/styled-ppx/runtime
108108
if: matrix.os == 'ubuntu-20.04'
109-
uses: actions/upload-artifact@v3
109+
uses: actions/upload-artifact@v4
110110
with:
111111
name: runtime-rescript
112112
path: _build/default/packages/runtime/rescript
@@ -154,25 +154,25 @@ jobs:
154154
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
155155

156156
- name: Download linux artifacts
157-
uses: actions/download-artifact@v3
157+
uses: actions/download-artifact@v4
158158
with:
159159
name: ubuntu-20.04
160160
path: _release/platform-linux-x64
161161

162162
- name: Download macOS artifacts
163-
uses: actions/download-artifact@v3
163+
uses: actions/download-artifact@v4
164164
with:
165165
name: macos-latest
166166
path: _release/platform-darwin-x64
167167

168168
# - name: Download windows artifacts
169-
# uses: actions/download-artifact@v3
169+
# uses: actions/download-artifact@v4
170170
# with:
171171
# name: windows-latest
172172
# path: _release/platform-windows-x64
173173

174174
- name: Download runtime-rescript artifacts
175-
uses: actions/download-artifact@v3
175+
uses: actions/download-artifact@v4
176176
with:
177177
name: runtime-rescript
178178
path: _release/rescript

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
### Typed styled components for ReScript, Melange and Native
44

5-
![demo](./.github/demo-dark.png#gh-dark-mode-only)![styled-ppx-demo-dark](./.github/demo-light.png#gh-light-mode-only)
6-
75
**styled-ppx** is a [ppx](https://tarides.com/blog/2019-05-09-an-introduction-to-ocaml-ppx-ecosystem) and a library that brings styled components to ReScript, Melange and Native. Create **React Components** or simply `className` with type-safe style definitions with only CSS.
86

97
Built on top of [emotion](https://emotion.sh), it allows you to style apps safely, quickly, and performantly - just as you always done it.

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
(description
2727
"styled-ppx is the ppx that brings styled components to ReScript and Melange, allowing you to create React Components with type-safe style definitions using CSS.")
2828
(depends
29-
(ocaml (>= 5.2.0))
29+
(ocaml (>= 4.14))
3030
(reason (>= 3.11.0))
3131
(menhir (>= 20220210))
3232
(ppx_deriving (>= 5.0))

styled-ppx.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage: "https://styled-ppx.vercel.app"
1010
bug-reports: "https://github.com/davesnx/styled-ppx/issues"
1111
depends: [
1212
"dune" {>= "3.8"}
13-
"ocaml" {>= "5.2.0"}
13+
"ocaml" {>= "4.14"}
1414
"reason" {>= "3.11.0"}
1515
"menhir" {>= "20220210"}
1616
"ppx_deriving" {>= "5.0"}

0 commit comments

Comments
 (0)