Skip to content

Commit

Permalink
Remove omp
Browse files Browse the repository at this point in the history
  • Loading branch information
davesnx committed Aug 23, 2023
1 parent 7db3ba6 commit 3be9020
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
1 change: 0 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
(depends
(ocaml (>= 4.14.1))
(menhir (= 20220210))
(ocaml-migrate-parsetree (= 2.4.0))
(ppx_deriving (>= 5.0))
(ppx_deriving_yojson (>= 3.7.0))
(ppxlib (>= 0.27.0))
Expand Down
7 changes: 1 addition & 6 deletions packages/parser/lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
(name styled_ppx_css_parser)
(wrapped false)
(public_name styled-ppx.css-parser)
(libraries
sedlex
menhirLib
ocaml-migrate-parsetree
str
styled-ppx.reason-css-lexer)
(libraries sedlex menhirLib str ppxlib styled-ppx.reason-css-lexer)
(preprocess
(pps sedlex.ppx ppx_deriving.show)))
16 changes: 16 additions & 0 deletions packages/ppx/test/snapshot/reason/label.t/input.re
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,19 @@ let fn2 = (x, y) =>
| B when y => [prop("by")]
| B => [prop("b")]
};

/* let className = [%cx {|
font-size: 28px;
|}];
let fn = () => {
let className = [%cx
{|
margin-bottom: 4px;
font-size: 28px;
|}
];
className;
};
*/
8 changes: 2 additions & 6 deletions packages/reason-css-parser/ppx/dune
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(library
(name reason_css_parser_ppx_lib)
(wrapped false)
(libraries ocaml-migrate-parsetree styled-ppx.css-spec-parser ppxlib)
(libraries styled-ppx.css-spec-parser ppxlib ppxlib.astlib)
(modules Generate)
(preprocess
(pps ppxlib.metaquot)))
Expand All @@ -10,11 +10,7 @@
(name reason_css_parser_ppx)
(kind ppx_rewriter)
(wrapped false)
(libraries
ocaml-migrate-parsetree
styled-ppx.css-spec-parser
ppxlib
reason_css_parser_ppx_lib)
(libraries styled-ppx.css-spec-parser ppxlib reason_css_parser_ppx_lib)
(modules Reason_css_parser_ppx)
(preprocess
(pps ppxlib.metaquot)))
1 change: 0 additions & 1 deletion styled-ppx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ depends: [
"dune" {>= "3.8"}
"ocaml" {>= "4.14.1"}
"menhir" {= "20220210"}
"ocaml-migrate-parsetree" {= "2.4.0"}
"ppx_deriving" {>= "5.0"}
"ppx_deriving_yojson" {>= "3.7.0"}
"ppxlib" {>= "0.27.0"}
Expand Down

0 comments on commit 3be9020

Please sign in to comment.