Skip to content

Commit

Permalink
Renames package to jsx-ssr
Browse files Browse the repository at this point in the history
  • Loading branch information
bikallem committed Jun 5, 2019
1 parent 93c7c15 commit 357c2ae
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion exe/Custom.re
@@ -1,4 +1,4 @@
open Ppx_lab;
open Jsx_ssr;

let createElement = (~className, ~id, ~children) => {
<div className id> ...children </div>;
Expand Down
2 changes: 1 addition & 1 deletion exe/HtmlFuncUsage.re
@@ -1,4 +1,4 @@
open Ppx_lab;
open Jsx_ssr;

/* Sample DOM element creation of the following html element.
<div id="container">
Expand Down
2 changes: 1 addition & 1 deletion exe/JsxTester.re
@@ -1,5 +1,5 @@
/* ReasonML converts <div className="test"/> to (div ~className:test ~children:[] ())[@JSX]. */
open Ppx_lab;
open Jsx_ssr;

let testAttr = "test";

Expand Down
6 changes: 3 additions & 3 deletions exe/dune
@@ -1,11 +1,11 @@
(executable
(name JsxTester)
(modules JsxTester Custom)
(libraries ppx-lab)
(libraries jsx-ssr)
(preprocess
(pps ppx-lab)))
(pps jsx-ssr)))

(executable
(name HtmlFuncUsage)
(modules HtmlFuncUsage)
(libraries ppx-lab))
(libraries jsx-ssr))
File renamed without changes.
4 changes: 2 additions & 2 deletions lib/dune
@@ -1,6 +1,6 @@
(library
(name ppx_lab)
(public_name ppx-lab)
(name jsx_ssr)
(public_name jsx-ssr)
(libraries ocaml-migrate-parsetree ppx_tools_versioned)
(kind ppx_rewriter)
(preprocess
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"name": "ppx-lab",
"name": "jsx-ssr",
"version": "0.0.0",
"description": "PPX experiments in ocaml/reasonml.",
"esy": {
Expand Down

0 comments on commit 357c2ae

Please sign in to comment.