Skip to content

Commit

Permalink
reflex-dom - v0.22.0 : Moved render to string
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Bouhet committed Apr 6, 2024
1 parent 4662668 commit 7ecb197
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions bits/render-to-string.es2017.cjs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions bits/render-to-string.es2020.mjs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion deopt/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { compute, h, state } from "../../src"
import { renderToString } from "../../src/renderToString.js"
import { renderToString } from "../../src/render-to-string"
import { For } from "../../src/performance-helpers";


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "reflex-dom",
"type": "module",
"version": "0.21.7",
"version": "0.22.0",
"description": "Reflex is a tiny and fast reactive UI library.",
"author": "Alexis Bouhet (ZoulouX)",
"license": "MIT",
Expand All @@ -14,7 +14,7 @@
"./hmr-plugin": "./dist/hmr-plugin.es2020.mjs",
"./hmr-runtime": "./dist/hmr-runtime.es2020.mjs",
"./debug": "./dist/debug.es2020.mjs",
"./render-to-string": "./dist/renderToString.es2020.mjs",
"./render-to-string": "./dist/render-to-string.es2020.mjs",
"./performance-helpers": "./dist/performance-helpers.es2020.mjs"
},
"scripts": {
Expand Down Expand Up @@ -73,8 +73,8 @@
"es2020.mjs",
"es2017.min.js"
],
"input": "./src/renderToString.ts",
"filterGlob": "renderToString.*",
"input": "./src/render-to-string.ts",
"filterGlob": "render-to-string.*",
"exportBits": true
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
export { state, effect, compute, changed, invalidateComponent, updateDomFromState } from "./states"
export { recursivelyUpdateMountState, getCurrentComponent, diffNode, getCurrentDiffingNode } from "./diff"
export { ref, refs } from "./ref"
export { render } from "./render"
export { render, hydrate } from "./render"
export { featureHook, createBatch } from "./common"
export { mounted, unmounted, rendered, defaultProps, shouldUpdate, shallowPropsCompare } from "./component"

Expand Down
File renamed without changes.

0 comments on commit 7ecb197

Please sign in to comment.