@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-network.mjs
CHANGED
|
@@ -24042,7 +24042,11 @@ var TestSuite;
|
|
|
24042
24042
|
})(TestSuite || (TestSuite = {}));
|
|
24043
24043
|
const ALL_VERSIONS_IN_ORDER = [GpVersion.V0_6_7, GpVersion.V0_7_0, GpVersion.V0_7_1, GpVersion.V0_7_2];
|
|
24044
24044
|
const DEFAULT_SUITE = TestSuite.W3F_DAVXY;
|
|
24045
|
-
|
|
24045
|
+
/**
|
|
24046
|
+
* Current version is set to track the jam-conformance testing.
|
|
24047
|
+
* Since we are currently at 0.7.1 not 0.7.2, we set our default version accordingly.
|
|
24048
|
+
*/
|
|
24049
|
+
const DEFAULT_VERSION = GpVersion.V0_7_1;
|
|
24046
24050
|
const env = typeof process === "undefined" ? {} : process.env;
|
|
24047
24051
|
let CURRENT_VERSION = parseCurrentVersion(env.GP_VERSION) ?? DEFAULT_VERSION;
|
|
24048
24052
|
let CURRENT_SUITE = parseCurrentSuite(env.TEST_SUITE) ?? DEFAULT_SUITE;
|