fixparser 5.3.3 → 5.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/browser.js +227 -1844
- package/examples/example_ws_client.html +1 -1
- package/examples/run-example.ts +5 -1
- package/fixparser.js +11 -11
- package/package.json +1 -1
- package/server.js +22 -22
- package/types/fixparser.d.ts +5 -5
- package/types/fixparser.tsbuildinfo +1 -1
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<p>View the Console in Developer Tools</p>
|
|
14
14
|
<script type="text/javascript" src="../browser.js"></script>
|
|
15
15
|
<script>
|
|
16
|
-
const fixParser = new FIXParser.
|
|
16
|
+
const fixParser = new FIXParser.FIXParser();
|
|
17
17
|
|
|
18
18
|
// NOTE: This feature requires a FIXParser Enterprise license
|
|
19
19
|
FIXParser.LicenseManager.setLicenseKey('<your license here>');
|
package/examples/run-example.ts
CHANGED
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
const globals = require('./../globals');
|
|
2
|
+
global.__PACKAGE_VERSION__ = JSON.stringify(globals.packageVersion);
|
|
3
|
+
global.__BUILD_TIME__ = JSON.stringify(globals.buildTime);
|
|
4
|
+
global.__RELEASE_INFORMATION__ = JSON.stringify(globals.releaseInformation);
|
|
5
|
+
|
|
2
6
|
require(`${__dirname}/${process.argv[2]}`);
|