Skip to content

Commit

Permalink
0.10.0-beta.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketfuryrocks committed Oct 28, 2020
1 parent 7c37bdd commit 02b16c4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
18 changes: 15 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Changes:
1. Component types fixed
2. Fixed 404 Error Propagation
changes:

1. Pass extra props to page
2. Customize App.jsx path
3. Only one instance can be run at a time
4. webpackJsonp to FireJSX.pagesJsonp amd FireJSX.appJsonp to prevent conflicts
5. FireJSX as global Object
6. jsonP no longer un refrenced
7. Api.ts to SSB.js
8. FlySSR to SSR.js
9. new Globals maintainance
10. Watch even in production
11. Fixed log formatting
12. Reduced render timings
13. buildPage lock
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-beta.5",
"version": "0.10.0-beta.6",
"license": "GPL-3.0-or-later",
"description": "The React Framework for SSB, SSR and Serverless technologies",
"bin": {
Expand Down
4 changes: 1 addition & 3 deletions scripts/getVersion.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
//get version from package.json
const package_ver = JSON.parse(require("fs").readFileSync("dist/package.json").toString()).version;
//get version from GlobalsSetter
require("../dist/GlobalsSetter.js");
//check if package.json and GlobalSetter Versions match
if (FireJSX.version === package_ver)
if (require("../dist/Globals.js").FireJSX_Version === package_ver)
console.log(package_ver);
else
process.exit(1);//exit with error
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-beta.5";
export const FireJSX_Version = "0.10.0-beta.6";

export function initGlobals() {
if (global.FireJSX)
Expand Down

0 comments on commit 02b16c4

Please sign in to comment.