-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add dummy opam file * Remove dune-projects * Add lwt_ppx and alcotest_lwt as opam deps * Bump version to 0.33.0
- Loading branch information
Showing
21 changed files
with
69 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@davesnx/styled-ppx", | ||
"version": "0.32.2", | ||
"version": "0.33.0", | ||
"description": "Typed styled components in ReScript", | ||
"author": "David Sancho <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -54,7 +54,7 @@ | |
"test_bs": "cd packages/ppx/test/browser; yarn; yarn build; yarn test", | ||
"dev": "esy dune build --root . --watch", | ||
"release-static": | ||
"esy b dune build --root . --ignore-promoted-rules --no-config --profile release-static --only-packages styled-ppx,reason-css-parser,reason-css-lexer,css-spec-parser,styled-ppx-css-parser,string-interpolation", | ||
"esy b dune build --root . --ignore-promoted-rules --no-config --profile release-static --only-packages styled-ppx", | ||
"ast": "esy dune exec packages/renderer/ast_renderer.exe --", | ||
"lexer": "esy dune exec packages/renderer/lexer_renderer.exe --" | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
(library | ||
(name reason_css_lexer) | ||
(public_name reason-css-lexer.lib) | ||
(public_name styled-ppx.reason-css-lexer) | ||
(libraries compiler-libs sedlex) | ||
(preprocess | ||
(pps sedlex.ppx ppx_deriving.show))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
opam-version: "2.0" | ||
synopsis: "Type-safe styled components for ReScript with type-safe CSS" | ||
description: """ | ||
styled-ppx is the ppx that brings typed styled components to ReScript, allowing you to create React Components with type-safe style definitions with CSS. | ||
""" | ||
maintainer: "David Sancho <[email protected]>" | ||
authors: "David Sancho <[email protected]>" | ||
license: "MIT" | ||
homepage: "https://styled-ppx.vercel.app" | ||
bug-reports: "https://github.com/davesnx/styled-ppx/issues" | ||
depends: [ | ||
"alcotest-lwt" {= "1.6.0"} | ||
"alcotest" {= "1.6.0"} | ||
"dune" {>= "3.0"} | ||
"lwt_ppx" {= "2.1.0"} | ||
"menhir" {= "20220210"} | ||
"ocaml-migrate-parsetree" {= "2.4.0"} | ||
"ocaml" {= "4.14.0"} | ||
"patdiff" {= "v0.15.0"} | ||
"ppx_deriving" {= "5.2.1"} | ||
"ppxlib" {= "0.27.0"} | ||
"reason" {= "3.8.1"} | ||
"sedlex" {= "3.0"} | ||
"ocaml-lsp-server" {dev} | ||
"ocamlformat" {dev} | ||
"utop" {dev} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/davesnx/styled-ppx.git" |