Skip to content

Commit

Permalink
path separator, version and readme change
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketfuryrocks committed Dec 28, 2020
1 parent 9563230 commit 262d199
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ Read more [here](https://webbuddy360.com/AniketFuryRocks/The%202021%20web%20deve

## Documentation 📚

> The Documentation is currently outdated and requires revisions. Windows is currently unsupported.
Documentation is available at the official [FireJSX Github Wiki](https://github.com/eAdded/FireJSX/wiki)

## Special Thanks 🙏
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firejsx",
"version": "0.10.0",
"version": "0.10.1",
"license": "GPL-3.0-or-later",
"description": "The React Framework for SSB, SSR and Serverless technologies",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/Globals.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {window as ssr_window} from "ssr-window";

export const FireJSX_Version = "0.10.0";
export const FireJSX_Version = "0.10.1";

export function initGlobals() {

Expand Down
4 changes: 2 additions & 2 deletions src/babel_plugins/wrapper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {join} from "path"
import {join, sep as pathSeparator} from "path"

export default function ({types: t}) {
const WrapJsPath = join(__dirname, "../web/Wrap")
Expand All @@ -23,7 +23,7 @@ export default function ({types: t}) {
t.identifier("default")
),
[
t.stringLiteral(filename.replace(pagesPath + "/", "")),
t.stringLiteral(filename.replace(pagesPath + pathSeparator, "")),
t.toExpression(path.node.declaration),
...(proOrSSR ? [] :
[
Expand Down

0 comments on commit 262d199

Please sign in to comment.