@typeberry/jam 0.4.0-2473e55 → 0.4.0-248b604
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/bootstrap-generator.mjs +5 -1
- package/bootstrap-generator.mjs.map +1 -1
- package/bootstrap-importer.mjs +186 -106
- package/bootstrap-importer.mjs.map +1 -1
- package/bootstrap-network.mjs +5 -1
- package/bootstrap-network.mjs.map +1 -1
- package/index.js +186 -106
- package/index.js.map +1 -1
- package/package.json +1 -1
package/bootstrap-generator.mjs
CHANGED
|
@@ -2878,7 +2878,11 @@ var TestSuite;
|
|
|
2878
2878
|
})(TestSuite || (TestSuite = {}));
|
|
2879
2879
|
const ALL_VERSIONS_IN_ORDER = [GpVersion.V0_6_7, GpVersion.V0_7_0, GpVersion.V0_7_1, GpVersion.V0_7_2];
|
|
2880
2880
|
const DEFAULT_SUITE = TestSuite.W3F_DAVXY;
|
|
2881
|
-
|
|
2881
|
+
/**
|
|
2882
|
+
* Current version is set to track the jam-conformance testing.
|
|
2883
|
+
* Since we are currently at 0.7.1 not 0.7.2, we set our default version accordingly.
|
|
2884
|
+
*/
|
|
2885
|
+
const DEFAULT_VERSION = GpVersion.V0_7_1;
|
|
2882
2886
|
const env = typeof process === "undefined" ? {} : process.env;
|
|
2883
2887
|
let CURRENT_VERSION = parseCurrentVersion(env.GP_VERSION) ?? DEFAULT_VERSION;
|
|
2884
2888
|
let CURRENT_SUITE = parseCurrentSuite(env.TEST_SUITE) ?? DEFAULT_SUITE;
|