@uniformdev/canvas 17.7.1-alpha.181 → 17.7.1-alpha.211
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/dist/cli/cli.js +64 -5
- package/dist/cli/cli.mjs +64 -5
- package/dist/index.d.ts +2 -2
- package/package.json +4 -4
package/dist/cli/cli.js
CHANGED
@@ -6684,7 +6684,7 @@ var require_encoding = __commonJS({
|
|
6684
6684
|
}
|
6685
6685
|
});
|
6686
6686
|
|
6687
|
-
// ../../node_modules/.pnpm/node-fetch@2.6.
|
6687
|
+
// ../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs
|
6688
6688
|
var lib_exports = {};
|
6689
6689
|
__export(lib_exports, {
|
6690
6690
|
FetchError: () => FetchError,
|
@@ -7073,7 +7073,7 @@ function fetch(url, opts) {
|
|
7073
7073
|
let error = new AbortError("The user aborted a request.");
|
7074
7074
|
reject(error);
|
7075
7075
|
if (request.body && request.body instanceof import_stream.default.Readable) {
|
7076
|
-
request.body
|
7076
|
+
destroyStream(request.body, error);
|
7077
7077
|
}
|
7078
7078
|
if (!response || !response.body)
|
7079
7079
|
return;
|
@@ -7108,8 +7108,29 @@ function fetch(url, opts) {
|
|
7108
7108
|
}
|
7109
7109
|
req.on("error", function(err) {
|
7110
7110
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, "system", err));
|
7111
|
+
if (response && response.body) {
|
7112
|
+
destroyStream(response.body, err);
|
7113
|
+
}
|
7111
7114
|
finalize();
|
7112
7115
|
});
|
7116
|
+
fixResponseChunkedTransferBadEnding(req, function(err) {
|
7117
|
+
if (signal && signal.aborted) {
|
7118
|
+
return;
|
7119
|
+
}
|
7120
|
+
destroyStream(response.body, err);
|
7121
|
+
});
|
7122
|
+
if (parseInt(process.version.substring(1)) < 14) {
|
7123
|
+
req.on("socket", function(s) {
|
7124
|
+
s.addListener("close", function(hadError) {
|
7125
|
+
const hasDataListener = s.listenerCount("data") > 0;
|
7126
|
+
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
7127
|
+
const err = new Error("Premature close");
|
7128
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7129
|
+
response.body.emit("error", err);
|
7130
|
+
}
|
7131
|
+
});
|
7132
|
+
});
|
7133
|
+
}
|
7113
7134
|
req.on("response", function(res) {
|
7114
7135
|
clearTimeout(reqTimeout);
|
7115
7136
|
const headers = createHeadersLenient(res.headers);
|
@@ -7160,7 +7181,7 @@ function fetch(url, opts) {
|
|
7160
7181
|
timeout: request.timeout,
|
7161
7182
|
size: request.size
|
7162
7183
|
};
|
7163
|
-
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7184
|
+
if (!isDomainOrSubdomain(request.url, locationURL) || !isSameProtocol(request.url, locationURL)) {
|
7164
7185
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7165
7186
|
requestOpts.headers.delete(name);
|
7166
7187
|
}
|
@@ -7221,6 +7242,12 @@ function fetch(url, opts) {
|
|
7221
7242
|
response = new Response(body, response_options);
|
7222
7243
|
resolve5(response);
|
7223
7244
|
});
|
7245
|
+
raw.on("end", function() {
|
7246
|
+
if (!response) {
|
7247
|
+
response = new Response(body, response_options);
|
7248
|
+
resolve5(response);
|
7249
|
+
}
|
7250
|
+
});
|
7224
7251
|
return;
|
7225
7252
|
}
|
7226
7253
|
if (codings == "br" && typeof import_zlib.default.createBrotliDecompress === "function") {
|
@@ -7235,9 +7262,36 @@ function fetch(url, opts) {
|
|
7235
7262
|
writeToStream(req, request);
|
7236
7263
|
});
|
7237
7264
|
}
|
7238
|
-
|
7265
|
+
function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
7266
|
+
let socket;
|
7267
|
+
request.on("socket", function(s) {
|
7268
|
+
socket = s;
|
7269
|
+
});
|
7270
|
+
request.on("response", function(response) {
|
7271
|
+
const headers = response.headers;
|
7272
|
+
if (headers["transfer-encoding"] === "chunked" && !headers["content-length"]) {
|
7273
|
+
response.once("close", function(hadError) {
|
7274
|
+
const hasDataListener = socket.listenerCount("data") > 0;
|
7275
|
+
if (hasDataListener && !hadError) {
|
7276
|
+
const err = new Error("Premature close");
|
7277
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7278
|
+
errorCallback(err);
|
7279
|
+
}
|
7280
|
+
});
|
7281
|
+
}
|
7282
|
+
});
|
7283
|
+
}
|
7284
|
+
function destroyStream(stream, err) {
|
7285
|
+
if (stream.destroy) {
|
7286
|
+
stream.destroy(err);
|
7287
|
+
} else {
|
7288
|
+
stream.emit("error", err);
|
7289
|
+
stream.end();
|
7290
|
+
}
|
7291
|
+
}
|
7292
|
+
var import_stream, import_http, import_url2, import_whatwg_url, import_https, import_zlib, Readable, BUFFER, TYPE, Blob2, convert, INTERNALS, PassThrough, invalidTokenRegex, invalidHeaderCharRegex, MAP, Headers, INTERNAL, HeadersIteratorPrototype, INTERNALS$1, STATUS_CODES, Response, INTERNALS$2, URL, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, isSameProtocol, lib_default2;
|
7239
7293
|
var init_lib = __esm({
|
7240
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7294
|
+
"../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs"() {
|
7241
7295
|
import_stream = __toESM(require("stream"), 1);
|
7242
7296
|
import_http = __toESM(require("http"), 1);
|
7243
7297
|
import_url2 = __toESM(require("url"), 1);
|
@@ -7748,6 +7802,11 @@ var init_lib = __esm({
|
|
7748
7802
|
const dest = new URL$1(destination).hostname;
|
7749
7803
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7750
7804
|
};
|
7805
|
+
isSameProtocol = function isSameProtocol2(destination, original) {
|
7806
|
+
const orig = new URL$1(original).protocol;
|
7807
|
+
const dest = new URL$1(destination).protocol;
|
7808
|
+
return orig === dest;
|
7809
|
+
};
|
7751
7810
|
fetch.isRedirect = function(code) {
|
7752
7811
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7753
7812
|
};
|
package/dist/cli/cli.mjs
CHANGED
@@ -6640,7 +6640,7 @@ var require_encoding = __commonJS({
|
|
6640
6640
|
}
|
6641
6641
|
});
|
6642
6642
|
|
6643
|
-
// ../../node_modules/.pnpm/node-fetch@2.6.
|
6643
|
+
// ../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs
|
6644
6644
|
var lib_exports = {};
|
6645
6645
|
__export(lib_exports, {
|
6646
6646
|
FetchError: () => FetchError,
|
@@ -7034,7 +7034,7 @@ function fetch(url, opts) {
|
|
7034
7034
|
let error = new AbortError("The user aborted a request.");
|
7035
7035
|
reject(error);
|
7036
7036
|
if (request.body && request.body instanceof Stream.Readable) {
|
7037
|
-
request.body
|
7037
|
+
destroyStream(request.body, error);
|
7038
7038
|
}
|
7039
7039
|
if (!response || !response.body)
|
7040
7040
|
return;
|
@@ -7069,8 +7069,29 @@ function fetch(url, opts) {
|
|
7069
7069
|
}
|
7070
7070
|
req.on("error", function(err) {
|
7071
7071
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, "system", err));
|
7072
|
+
if (response && response.body) {
|
7073
|
+
destroyStream(response.body, err);
|
7074
|
+
}
|
7072
7075
|
finalize();
|
7073
7076
|
});
|
7077
|
+
fixResponseChunkedTransferBadEnding(req, function(err) {
|
7078
|
+
if (signal && signal.aborted) {
|
7079
|
+
return;
|
7080
|
+
}
|
7081
|
+
destroyStream(response.body, err);
|
7082
|
+
});
|
7083
|
+
if (parseInt(process.version.substring(1)) < 14) {
|
7084
|
+
req.on("socket", function(s) {
|
7085
|
+
s.addListener("close", function(hadError) {
|
7086
|
+
const hasDataListener = s.listenerCount("data") > 0;
|
7087
|
+
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
7088
|
+
const err = new Error("Premature close");
|
7089
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7090
|
+
response.body.emit("error", err);
|
7091
|
+
}
|
7092
|
+
});
|
7093
|
+
});
|
7094
|
+
}
|
7074
7095
|
req.on("response", function(res) {
|
7075
7096
|
clearTimeout(reqTimeout);
|
7076
7097
|
const headers = createHeadersLenient(res.headers);
|
@@ -7121,7 +7142,7 @@ function fetch(url, opts) {
|
|
7121
7142
|
timeout: request.timeout,
|
7122
7143
|
size: request.size
|
7123
7144
|
};
|
7124
|
-
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7145
|
+
if (!isDomainOrSubdomain(request.url, locationURL) || !isSameProtocol(request.url, locationURL)) {
|
7125
7146
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7126
7147
|
requestOpts.headers.delete(name);
|
7127
7148
|
}
|
@@ -7182,6 +7203,12 @@ function fetch(url, opts) {
|
|
7182
7203
|
response = new Response(body, response_options);
|
7183
7204
|
resolve5(response);
|
7184
7205
|
});
|
7206
|
+
raw.on("end", function() {
|
7207
|
+
if (!response) {
|
7208
|
+
response = new Response(body, response_options);
|
7209
|
+
resolve5(response);
|
7210
|
+
}
|
7211
|
+
});
|
7185
7212
|
return;
|
7186
7213
|
}
|
7187
7214
|
if (codings == "br" && typeof zlib.createBrotliDecompress === "function") {
|
@@ -7196,9 +7223,36 @@ function fetch(url, opts) {
|
|
7196
7223
|
writeToStream(req, request);
|
7197
7224
|
});
|
7198
7225
|
}
|
7199
|
-
|
7226
|
+
function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
7227
|
+
let socket;
|
7228
|
+
request.on("socket", function(s) {
|
7229
|
+
socket = s;
|
7230
|
+
});
|
7231
|
+
request.on("response", function(response) {
|
7232
|
+
const headers = response.headers;
|
7233
|
+
if (headers["transfer-encoding"] === "chunked" && !headers["content-length"]) {
|
7234
|
+
response.once("close", function(hadError) {
|
7235
|
+
const hasDataListener = socket.listenerCount("data") > 0;
|
7236
|
+
if (hasDataListener && !hadError) {
|
7237
|
+
const err = new Error("Premature close");
|
7238
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7239
|
+
errorCallback(err);
|
7240
|
+
}
|
7241
|
+
});
|
7242
|
+
}
|
7243
|
+
});
|
7244
|
+
}
|
7245
|
+
function destroyStream(stream, err) {
|
7246
|
+
if (stream.destroy) {
|
7247
|
+
stream.destroy(err);
|
7248
|
+
} else {
|
7249
|
+
stream.emit("error", err);
|
7250
|
+
stream.end();
|
7251
|
+
}
|
7252
|
+
}
|
7253
|
+
var import_whatwg_url, Readable, BUFFER, TYPE, Blob2, convert, INTERNALS, PassThrough, invalidTokenRegex, invalidHeaderCharRegex, MAP, Headers, INTERNAL, HeadersIteratorPrototype, INTERNALS$1, STATUS_CODES, Response, INTERNALS$2, URL, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, isSameProtocol, lib_default2;
|
7200
7254
|
var init_lib = __esm({
|
7201
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7255
|
+
"../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs"() {
|
7202
7256
|
import_whatwg_url = __toESM(require_public_api(), 1);
|
7203
7257
|
Readable = Stream.Readable;
|
7204
7258
|
BUFFER = Symbol("buffer");
|
@@ -7704,6 +7758,11 @@ var init_lib = __esm({
|
|
7704
7758
|
const dest = new URL$1(destination).hostname;
|
7705
7759
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7706
7760
|
};
|
7761
|
+
isSameProtocol = function isSameProtocol2(destination, original) {
|
7762
|
+
const orig = new URL$1(original).protocol;
|
7763
|
+
const dest = new URL$1(destination).protocol;
|
7764
|
+
return orig === dest;
|
7765
|
+
};
|
7707
7766
|
fetch.isRedirect = function(code) {
|
7708
7767
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7709
7768
|
};
|
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ApiClient, ClientOptions, ExceptProject, ApiClientError } from '@uniformdev/context/api';
|
2
2
|
export { ApiClientError } from '@uniformdev/context/api';
|
3
3
|
import { C as CompositionGetParameters, a as CompositionGetByNodePathParameters, D as DataResolutionOptionNegative, b as CompositionGetResponse, c as DataResolutionOptionPositive, d as DataResolutionParameters, e as CompositionResolvedGetResponse, f as CompositionGetValidResponses, g as DataResolutionOption, h as CompositionGetByNodeIdParameters, i as CompositionGetBySlugParameters, j as CompositionGetByIdParameters, k as CompositionPutParameters, l as CompositionDeleteParameters, m as ComponentDefinitionGetParameters, n as ComponentDefinitionPutParameters, o as ComponentDefinitionDeleteParameters, p as ComponentInstance, q as ComponentParameter, r as components, s as DataSourceGetParameters, t as DataSourcesGetParameters, u as DataSourcePutParameters, v as DataSourceDeleteParameters, w as DataTypeGetParameters, x as DataTypeGetResponse, y as DataTypePutParameters, z as DataTypeDeleteParameters, R as RootComponentInstance, P as PreviewEventBus } from './createEventBus-bd2e0a92.js';
|
4
|
-
export { a1 as CanvasDefinitions, A as ChannelSubscription, O as ComponentDefinition, H as ComponentDefinitionAPIDeleteRequest, G as ComponentDefinitionAPIPutRequest, F as ComponentDefinitionAPIResponse, E as ComponentDefinitionGetResponse, I as ComponentDefinitionListAPIOptions, J as ComponentDefinitionParameter, N as ComponentDefinitionPermission, M as ComponentDefinitionSlot, L as ComponentDefinitionSlugSettings, K as ComponentDefinitionVariant, W as CompositionAPIDeleteRequest, Y as CompositionAPIOptions, V as CompositionAPIResponse, a8 as CompositionDataDiagnostic, U as CompositionGetListResponse, S as CompositionGetOrderBy, a2 as CompositionIssue, X as CompositionListAPIResponse, a3 as CompositionPatternIssue, T as CompositionUIStatus, Q as CreatingComponentDefinition, a4 as DataElementBindingIssue, Z as DataElementConnectionDefinition, a7 as DataResolutionConfigIssue, a0 as DataResourceDefinition, $ as DataResourceDefinitions, a5 as DataResourceIssue, a6 as DataResourceVariableIssue, _ as DataResourceVariables, ac as DataSource, a9 as DataSourceGetResponse, aa as DataSourcesGetResponse, ab as DataType, ad as DataVariableDefinition, B as createEventBus } from './createEventBus-bd2e0a92.js';
|
4
|
+
export { a1 as CanvasDefinitions, A as ChannelSubscription, O as ComponentDefinition, H as ComponentDefinitionAPIDeleteRequest, G as ComponentDefinitionAPIPutRequest, F as ComponentDefinitionAPIResponse, o as ComponentDefinitionDeleteParameters, m as ComponentDefinitionGetParameters, E as ComponentDefinitionGetResponse, I as ComponentDefinitionListAPIOptions, J as ComponentDefinitionParameter, N as ComponentDefinitionPermission, n as ComponentDefinitionPutParameters, M as ComponentDefinitionSlot, L as ComponentDefinitionSlugSettings, K as ComponentDefinitionVariant, p as ComponentInstance, q as ComponentParameter, W as CompositionAPIDeleteRequest, Y as CompositionAPIOptions, V as CompositionAPIResponse, a8 as CompositionDataDiagnostic, l as CompositionDeleteParameters, j as CompositionGetByIdParameters, h as CompositionGetByNodeIdParameters, a as CompositionGetByNodePathParameters, i as CompositionGetBySlugParameters, U as CompositionGetListResponse, S as CompositionGetOrderBy, C as CompositionGetParameters, b as CompositionGetResponse, f as CompositionGetValidResponses, a2 as CompositionIssue, X as CompositionListAPIResponse, a3 as CompositionPatternIssue, k as CompositionPutParameters, e as CompositionResolvedGetResponse, T as CompositionUIStatus, Q as CreatingComponentDefinition, a4 as DataElementBindingIssue, Z as DataElementConnectionDefinition, a7 as DataResolutionConfigIssue, g as DataResolutionOption, D as DataResolutionOptionNegative, c as DataResolutionOptionPositive, d as DataResolutionParameters, a0 as DataResourceDefinition, $ as DataResourceDefinitions, a5 as DataResourceIssue, a6 as DataResourceVariableIssue, _ as DataResourceVariables, ac as DataSource, v as DataSourceDeleteParameters, s as DataSourceGetParameters, a9 as DataSourceGetResponse, u as DataSourcePutParameters, t as DataSourcesGetParameters, aa as DataSourcesGetResponse, ab as DataType, z as DataTypeDeleteParameters, w as DataTypeGetParameters, x as DataTypeGetResponse, y as DataTypePutParameters, ad as DataVariableDefinition, P as PreviewEventBus, R as RootComponentInstance, B as createEventBus } from './createEventBus-bd2e0a92.js';
|
5
5
|
import { Options as Options$1 } from 'p-retry';
|
6
6
|
import { Options } from 'p-throttle';
|
7
7
|
import { PersonalizedVariant, TestVariant } from '@uniformdev/context';
|
@@ -697,4 +697,4 @@ declare function mapSlotToTestVariations(slot: ComponentInstance[] | undefined):
|
|
697
697
|
|
698
698
|
declare const CanvasClientError: typeof ApiClientError;
|
699
699
|
|
700
|
-
export { AddComponentMessage, BatchEnhancer, BatchEntry, CANVAS_DRAFT_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CanvasClient, CanvasClientError, Channel, ChannelMessage, ChildEnhancerBuilder,
|
700
|
+
export { AddComponentMessage, BatchEnhancer, BatchEntry, CANVAS_DRAFT_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CanvasClient, CanvasClientError, Channel, ChannelMessage, ChildEnhancerBuilder, ComponentEnhancer, ComponentEnhancerFunction, ComponentEnhancerOptions, ComponentLocationReference, ComponentParameterEnhancer, ComponentParameterEnhancerFunction, ComponentParameterEnhancerOptions, DataSourceClient, DataTypeClient, DismissPlaceholderMessage, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_DEFAULT_L2_CACHE_TTL_IN_HOURS, EDGE_MAX_CACHE_TTL, EDGE_MAX_L2_CACHE_TTL_IN_HOURS, EDGE_MIN_CACHE_TTL, EDGE_MIN_L2_CACHE_TTL_IN_HOURS, EnhancerBuilder, EnhancerContext, EnhancerError, EventNames, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, InvalidationInput, InvalidationPayload, InvalidationResult, LimitPolicy, MessageHandler, MoveComponentMessage, PLACEHOLDER_ID, ReadyMessage, SelectComponentMessage, SubscribeToCompositionOptions, UncachedCanvasClient, UniqueBatchEntries, UnsubscribeCallback, UpdateCompositionMessage, WalkComponentTreeActions, compose, createBatchEnhancer, createCanvasChannel, createLimitPolicy, enhance, extractLocales, generateHash, getChannelName, getComponentJsonPointer, getComponentPath, isAddComponentMessage, isDismissPlaceholderMessage, isMovingComponentMessage, isReadyMessage, isSelectComponentMessage, isSystemComponentDefinition, isUpdateCompositionMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, subscribeToComposition, walkComponentTree };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "17.7.1-alpha.
|
3
|
+
"version": "17.7.1-alpha.211+e51b76310",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -49,7 +49,7 @@
|
|
49
49
|
"devDependencies": {
|
50
50
|
"@types/retry": "0.12.1",
|
51
51
|
"@types/yargs": "17.0.19",
|
52
|
-
"@uniformdev/cli": "
|
52
|
+
"@uniformdev/cli": "17.7.1-alpha.211+e51b76310",
|
53
53
|
"p-limit": "4.0.0",
|
54
54
|
"p-retry": "5.1.2",
|
55
55
|
"p-throttle": "5.0.0",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"yargs": "17.6.2"
|
58
58
|
},
|
59
59
|
"dependencies": {
|
60
|
-
"@uniformdev/context": "
|
60
|
+
"@uniformdev/context": "17.7.1-alpha.211+e51b76310"
|
61
61
|
},
|
62
62
|
"files": [
|
63
63
|
"/dist"
|
@@ -65,5 +65,5 @@
|
|
65
65
|
"publishConfig": {
|
66
66
|
"access": "public"
|
67
67
|
},
|
68
|
-
"gitHead": "
|
68
|
+
"gitHead": "e51b76310a677d0f0f2b35bfa1f7416c733cf25d"
|
69
69
|
}
|