@digipair/skill-vespa 0.8.3 → 0.8.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/index.cjs.js +8 -6
- package/index.esm.js +3 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -58055,14 +58055,14 @@ function indent(str, spaces) {
|
|
58055
58055
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
58056
58056
|
// match is required
|
58057
58057
|
if (!match) {
|
58058
|
-
return i = i1,
|
58058
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
58059
58059
|
v: nextMatch1
|
58060
58060
|
};
|
58061
58061
|
}
|
58062
58062
|
var token = match.token, offset = match.offset;
|
58063
58063
|
i1 += offset;
|
58064
58064
|
if (token === " ") {
|
58065
|
-
return i = i1,
|
58065
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
58066
58066
|
}
|
58067
58067
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
58068
58068
|
token
|
@@ -58081,7 +58081,7 @@ function indent(str, spaces) {
|
|
58081
58081
|
if (contextKeys.some(function(el) {
|
58082
58082
|
return el.startsWith(name);
|
58083
58083
|
})) {
|
58084
|
-
return i = i1,
|
58084
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
58085
58085
|
}
|
58086
58086
|
if (dateTimeIdentifiers.some(function(el) {
|
58087
58087
|
return el === name;
|
@@ -58100,9 +58100,9 @@ function indent(str, spaces) {
|
|
58100
58100
|
if (dateTimeIdentifiers.some(function(el) {
|
58101
58101
|
return el.startsWith(name);
|
58102
58102
|
})) {
|
58103
|
-
return i = i1,
|
58103
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
58104
58104
|
}
|
58105
|
-
return i = i1,
|
58105
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
58106
58106
|
v: nextMatch1
|
58107
58107
|
};
|
58108
58108
|
};
|
@@ -61887,7 +61887,9 @@ function findNext(nodeRef) {
|
|
61887
61887
|
handlebars_min.exports.registerHelper('JSONstringify', function(value) {
|
61888
61888
|
return JSON.stringify(value);
|
61889
61889
|
});
|
61890
|
-
const
|
61890
|
+
const globalInstance = typeof window === 'undefined' ? global : window;
|
61891
|
+
var _globalInstance___DIGIPAIR_CONFIG__;
|
61892
|
+
const _config = globalInstance.__DIGIPAIR_CONFIG__ = (_globalInstance___DIGIPAIR_CONFIG__ = globalInstance.__DIGIPAIR_CONFIG__) != null ? _globalInstance___DIGIPAIR_CONFIG__ : {
|
61891
61893
|
LIBRARIES: {},
|
61892
61894
|
BASE_URL: 'https://cdn.jsdelivr.net/npm'
|
61893
61895
|
};
|
package/index.esm.js
CHANGED
@@ -61865,7 +61865,9 @@ function findNext(nodeRef) {
|
|
61865
61865
|
handlebars_min.exports.registerHelper('JSONstringify', function(value) {
|
61866
61866
|
return JSON.stringify(value);
|
61867
61867
|
});
|
61868
|
-
const
|
61868
|
+
const globalInstance = typeof window === 'undefined' ? global : window;
|
61869
|
+
var _globalInstance___DIGIPAIR_CONFIG__;
|
61870
|
+
const _config = globalInstance.__DIGIPAIR_CONFIG__ = (_globalInstance___DIGIPAIR_CONFIG__ = globalInstance.__DIGIPAIR_CONFIG__) != null ? _globalInstance___DIGIPAIR_CONFIG__ : {
|
61869
61871
|
LIBRARIES: {},
|
61870
61872
|
BASE_URL: 'https://cdn.jsdelivr.net/npm'
|
61871
61873
|
};
|