-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c37bdd
commit 02b16c4
Showing
4 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters