bulltrackers-module 1.0.234 → 1.0.235

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.
@@ -4,6 +4,8 @@
4
4
  const { generateCodeHash, LEGACY_MAPPING } = require('../topology/HashManager.js');
5
5
  const { normalizeName } = require('../utils/utils');
6
6
 
7
+ const SYSTEM_EPOCH = require('../system_epoch');
8
+
7
9
  // Import Layers
8
10
  const MathematicsLayer = require('../layers/mathematics');
9
11
  const ExtractorsLayer = require('../layers/extractors');
@@ -99,7 +101,7 @@ function buildManifest(productLinesToRun = [], calculations) {
99
101
  const dependencies = Class.getDependencies().map(normalizeName);
100
102
  const codeStr = Class.toString();
101
103
 
102
- let compositeHashString = generateCodeHash(codeStr);
104
+ let compositeHashString = generateCodeHash(codeStr) + `|EPOCH:${SYSTEM_EPOCH}`;
103
105
  const usedDeps = [];
104
106
 
105
107
  for (const [layerName, exportsMap] of Object.entries(LAYER_TRIGGERS)) {
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bulltrackers-module",
3
- "version": "1.0.234",
3
+ "version": "1.0.235",
4
4
  "description": "Helper Functions for Bulltrackers.",
5
5
  "main": "index.js",
6
6
  "files": [