solve-engine 1.0.0-beta.6 → 1.0.0-beta.7
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 +10 -3
- package/dist/{chunk-62W2DYYA.cjs → chunk-35IWNZPJ.cjs} +3 -3
- package/dist/chunk-35IWNZPJ.cjs.map +1 -0
- package/dist/{chunk-LVLUHTRD.js → chunk-P33SBYGG.js} +3 -3
- package/dist/chunk-P33SBYGG.js.map +1 -0
- package/dist/{chunk-NUR3K7EW.js → chunk-P75775WC.js} +3 -3
- package/dist/{chunk-NUR3K7EW.js.map → chunk-P75775WC.js.map} +1 -1
- package/dist/{chunk-FN2WMF2W.cjs → chunk-V6HA6JJZ.cjs} +6 -6
- package/dist/{chunk-FN2WMF2W.cjs.map → chunk-V6HA6JJZ.cjs.map} +1 -1
- package/dist/constants.cjs +4 -4
- package/dist/constants.js +1 -1
- package/dist/engine.cjs +12 -12
- package/dist/engine.js +2 -2
- package/dist/index.cjs +8 -8
- package/dist/index.js +3 -3
- package/package.json +3 -3
- package/dist/chunk-62W2DYYA.cjs.map +0 -1
- package/dist/chunk-LVLUHTRD.js.map +0 -1
|
@@ -12,7 +12,7 @@ var chunkZ2XP767T_cjs = require('./chunk-Z2XP767T.cjs');
|
|
|
12
12
|
var chunkBXKJLM5R_cjs = require('./chunk-BXKJLM5R.cjs');
|
|
13
13
|
var chunk4CVLFLOB_cjs = require('./chunk-4CVLFLOB.cjs');
|
|
14
14
|
var chunkOC6LTXYS_cjs = require('./chunk-OC6LTXYS.cjs');
|
|
15
|
-
var
|
|
15
|
+
var chunk35IWNZPJ_cjs = require('./chunk-35IWNZPJ.cjs');
|
|
16
16
|
var chunkWWOLFXTX_cjs = require('./chunk-WWOLFXTX.cjs');
|
|
17
17
|
var chunkTY3TLZAW_cjs = require('./chunk-TY3TLZAW.cjs');
|
|
18
18
|
var chunkM4N5GA5Z_cjs = require('./chunk-M4N5GA5Z.cjs');
|
|
@@ -2203,7 +2203,7 @@ function checkPackageCompatibility(candidate, existing) {
|
|
|
2203
2203
|
|
|
2204
2204
|
// src/api/EngineVersionCompatibility.ts
|
|
2205
2205
|
var import_semver = chunkB7LXJ6LC_cjs.__toESM(require_semver2(), 1);
|
|
2206
|
-
function checkEngineVersionCompatibility(pkg, engineVersion =
|
|
2206
|
+
function checkEngineVersionCompatibility(pkg, engineVersion = chunk35IWNZPJ_cjs.ENGINE_VERSION) {
|
|
2207
2207
|
if (!pkg.engineVersion) return { compatible: true };
|
|
2208
2208
|
if ((0, import_semver.validRange)(pkg.engineVersion) === null) {
|
|
2209
2209
|
return { compatible: false, reason: "invalid-range", declaredRange: pkg.engineVersion, engineVersion };
|
|
@@ -2214,7 +2214,7 @@ function checkEngineVersionCompatibility(pkg, engineVersion = chunk62W2DYYA_cjs.
|
|
|
2214
2214
|
}
|
|
2215
2215
|
return { compatible: true };
|
|
2216
2216
|
}
|
|
2217
|
-
function assertEngineVersionCompatible(pkg, engineVersion =
|
|
2217
|
+
function assertEngineVersionCompatible(pkg, engineVersion = chunk35IWNZPJ_cjs.ENGINE_VERSION) {
|
|
2218
2218
|
const result = checkEngineVersionCompatibility(pkg, engineVersion);
|
|
2219
2219
|
if (result.compatible) return;
|
|
2220
2220
|
if (result.reason === "invalid-range") {
|
|
@@ -3421,7 +3421,7 @@ var ExpressionEngine = class {
|
|
|
3421
3421
|
// Most recent pipeline telemetry, populated when AllocationTracker.isEnabled().
|
|
3422
3422
|
this.lastTelemetry = null;
|
|
3423
3423
|
this.localeCode = localeCode;
|
|
3424
|
-
this.config =
|
|
3424
|
+
this.config = chunk35IWNZPJ_cjs.mergeEngineConfig(chunk35IWNZPJ_cjs.DEFAULT_CONFIG, config ?? {});
|
|
3425
3425
|
this.lexer = new chunkWWOLFXTX_cjs.Lexer(localeCode, chunkWWOLFXTX_cjs.buildTokenLookup(localeCode));
|
|
3426
3426
|
this.registry = new chunkMTX2KVU7_cjs.ParseletRegistry();
|
|
3427
3427
|
this.context = chunkBXKJLM5R_cjs.createEngineContext();
|
|
@@ -7483,5 +7483,5 @@ exports.checkPackageCompatibility = checkPackageCompatibility;
|
|
|
7483
7483
|
exports.extractReadsAndWrites = extractReadsAndWrites;
|
|
7484
7484
|
exports.findInlineSolvesInLine = findInlineSolvesInLine;
|
|
7485
7485
|
exports.isEmptyLine = isEmptyLine;
|
|
7486
|
-
//# sourceMappingURL=chunk-
|
|
7487
|
-
//# sourceMappingURL=chunk-
|
|
7486
|
+
//# sourceMappingURL=chunk-V6HA6JJZ.cjs.map
|
|
7487
|
+
//# sourceMappingURL=chunk-V6HA6JJZ.cjs.map
|