create-tamagui 1.110.1 → 1.110.3
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/index.js +22 -2
- package/dist/index.js.map +1 -1
- package/dist/index.native.js +15 -2
- package/dist/index.native.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -14718,6 +14718,7 @@ var require_resolve_props = __commonJS({
|
|
|
14718
14718
|
comma && onError(token, "UNEXPECTED_TOKEN", `Unexpected , in ${flow}`), comma = token, atNewline = !1, hasSpace = !1;
|
|
14719
14719
|
break;
|
|
14720
14720
|
}
|
|
14721
|
+
// else fallthrough
|
|
14721
14722
|
default:
|
|
14722
14723
|
onError(token, "UNEXPECTED_TOKEN", `Unexpected ${token.type} token`), atNewline = !1, hasSpace = !1;
|
|
14723
14724
|
}
|
|
@@ -15173,6 +15174,7 @@ var require_resolve_block_scalar = __commonJS({
|
|
|
15173
15174
|
switch (token.type) {
|
|
15174
15175
|
case "space":
|
|
15175
15176
|
hasSpace = !0;
|
|
15177
|
+
// fallthrough
|
|
15176
15178
|
case "newline":
|
|
15177
15179
|
length += token.source.length;
|
|
15178
15180
|
break;
|
|
@@ -15182,6 +15184,7 @@ var require_resolve_block_scalar = __commonJS({
|
|
|
15182
15184
|
case "error":
|
|
15183
15185
|
onError(token, "UNEXPECTED_TOKEN", token.message), length += token.source.length;
|
|
15184
15186
|
break;
|
|
15187
|
+
/* istanbul ignore next should not happen */
|
|
15185
15188
|
default: {
|
|
15186
15189
|
let message = `Unexpected token in block scalar header: ${token.type}`;
|
|
15187
15190
|
onError(token, "UNEXPECTED_TOKEN", message);
|
|
@@ -15219,6 +15222,7 @@ var require_resolve_flow_scalar = __commonJS({
|
|
|
15219
15222
|
case "double-quoted-scalar":
|
|
15220
15223
|
_type = Scalar.Scalar.QUOTE_DOUBLE, value = doubleQuotedValue(source, _onError);
|
|
15221
15224
|
break;
|
|
15225
|
+
/* istanbul ignore next should not happen */
|
|
15222
15226
|
default:
|
|
15223
15227
|
return onError(scalar, "UNEXPECTED_TOKEN", `Expected a flow scalar value, but found: ${type}`), {
|
|
15224
15228
|
value: "",
|
|
@@ -15238,6 +15242,7 @@ var require_resolve_flow_scalar = __commonJS({
|
|
|
15238
15242
|
function plainValue(source, onError) {
|
|
15239
15243
|
let badChar = "";
|
|
15240
15244
|
switch (source[0]) {
|
|
15245
|
+
/* istanbul ignore next should not happen */
|
|
15241
15246
|
case " ":
|
|
15242
15247
|
badChar = "a tab character";
|
|
15243
15248
|
break;
|
|
@@ -16201,6 +16206,7 @@ var require_lexer = __commonJS({
|
|
|
16201
16206
|
switch (line[n]) {
|
|
16202
16207
|
case "#":
|
|
16203
16208
|
yield* this.pushCount(line.length - n);
|
|
16209
|
+
// fallthrough
|
|
16204
16210
|
case void 0:
|
|
16205
16211
|
return yield* this.pushNewline(), yield* this.parseLineStart();
|
|
16206
16212
|
case "{":
|
|
@@ -16255,6 +16261,7 @@ var require_lexer = __commonJS({
|
|
|
16255
16261
|
if (this.flowKey || isEmpty(next) || next === ",")
|
|
16256
16262
|
return this.flowKey = !1, yield* this.pushCount(1), yield* this.pushSpaces(!0), "flow";
|
|
16257
16263
|
}
|
|
16264
|
+
// fallthrough
|
|
16258
16265
|
default:
|
|
16259
16266
|
return this.flowKey = !1, yield* this.parsePlainScalar();
|
|
16260
16267
|
}
|
|
@@ -16325,6 +16332,7 @@ var require_lexer = __commonJS({
|
|
|
16325
16332
|
`)
|
|
16326
16333
|
break;
|
|
16327
16334
|
}
|
|
16335
|
+
// fallthrough
|
|
16328
16336
|
default:
|
|
16329
16337
|
break loop;
|
|
16330
16338
|
}
|
|
@@ -16402,7 +16410,9 @@ var require_lexer = __commonJS({
|
|
|
16402
16410
|
case "&":
|
|
16403
16411
|
return (yield* this.pushUntil(isNotAnchorChar)) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
|
|
16404
16412
|
case "-":
|
|
16413
|
+
// this is an error
|
|
16405
16414
|
case "?":
|
|
16415
|
+
// this is an error outside flow collections
|
|
16406
16416
|
case ":": {
|
|
16407
16417
|
let inFlow = this.flowLevel > 0, ch1 = this.charAt(1);
|
|
16408
16418
|
if (isEmpty(ch1) || inFlow && invalidFlowScalarChars.includes(ch1))
|
|
@@ -16524,6 +16534,7 @@ var require_parser = __commonJS({
|
|
|
16524
16534
|
}
|
|
16525
16535
|
case "block-seq":
|
|
16526
16536
|
return parent.items[parent.items.length - 1].start;
|
|
16537
|
+
/* istanbul ignore next should not happen */
|
|
16527
16538
|
default:
|
|
16528
16539
|
return [];
|
|
16529
16540
|
}
|
|
@@ -16699,6 +16710,7 @@ var require_parser = __commonJS({
|
|
|
16699
16710
|
!it || it.value ? top.items.push({ start: [], key: token, sep: [] }) : it.sep ? it.value = token : Object.assign(it, { key: token, sep: [] });
|
|
16700
16711
|
return;
|
|
16701
16712
|
}
|
|
16713
|
+
/* istanbul ignore next should not happen */
|
|
16702
16714
|
default:
|
|
16703
16715
|
yield* this.pop(), yield* this.pop(token);
|
|
16704
16716
|
}
|
|
@@ -16792,6 +16804,7 @@ var require_parser = __commonJS({
|
|
|
16792
16804
|
}
|
|
16793
16805
|
yield* this.pop();
|
|
16794
16806
|
break;
|
|
16807
|
+
/* istanbul ignore next should not happen */
|
|
16795
16808
|
default:
|
|
16796
16809
|
yield* this.pop(), yield* this.step();
|
|
16797
16810
|
}
|
|
@@ -17109,6 +17122,7 @@ var require_parser = __commonJS({
|
|
|
17109
17122
|
break;
|
|
17110
17123
|
case "newline":
|
|
17111
17124
|
this.onKeyLine = !1;
|
|
17125
|
+
// fallthrough
|
|
17112
17126
|
case "space":
|
|
17113
17127
|
case "comment":
|
|
17114
17128
|
default:
|
|
@@ -22048,6 +22062,8 @@ var require_semver = __commonJS({
|
|
|
22048
22062
|
case "prepatch":
|
|
22049
22063
|
this.prerelease.length = 0, this.inc("patch", identifier), this.inc("pre", identifier);
|
|
22050
22064
|
break;
|
|
22065
|
+
// If the input is a non-prerelease version, this acts the same as
|
|
22066
|
+
// prepatch.
|
|
22051
22067
|
case "prerelease":
|
|
22052
22068
|
this.prerelease.length === 0 && this.inc("patch", identifier), this.inc("pre", identifier);
|
|
22053
22069
|
break;
|
|
@@ -22060,6 +22076,8 @@ var require_semver = __commonJS({
|
|
|
22060
22076
|
case "patch":
|
|
22061
22077
|
this.prerelease.length === 0 && this.patch++, this.prerelease = [];
|
|
22062
22078
|
break;
|
|
22079
|
+
// This probably shouldn't be used publicly.
|
|
22080
|
+
// 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction.
|
|
22063
22081
|
case "pre":
|
|
22064
22082
|
if (this.prerelease.length === 0)
|
|
22065
22083
|
this.prerelease = [0];
|
|
@@ -22421,6 +22439,7 @@ var require_semver = __commonJS({
|
|
|
22421
22439
|
switch (comparator.operator) {
|
|
22422
22440
|
case ">":
|
|
22423
22441
|
compver.prerelease.length === 0 ? compver.patch++ : compver.prerelease.push(0), compver.raw = compver.format();
|
|
22442
|
+
/* fallthrough */
|
|
22424
22443
|
case "":
|
|
22425
22444
|
case ">=":
|
|
22426
22445
|
(!minver || gt(minver, compver)) && (minver = compver);
|
|
@@ -22428,6 +22447,7 @@ var require_semver = __commonJS({
|
|
|
22428
22447
|
case "<":
|
|
22429
22448
|
case "<=":
|
|
22430
22449
|
break;
|
|
22450
|
+
/* istanbul ignore next */
|
|
22431
22451
|
default:
|
|
22432
22452
|
throw new Error("Unexpected operation: " + comparator.operator);
|
|
22433
22453
|
}
|
|
@@ -26062,7 +26082,7 @@ var globby2 = Object.assign(function(patterns, options) {
|
|
|
26062
26082
|
// package.json
|
|
26063
26083
|
var package_default = {
|
|
26064
26084
|
name: "create-tamagui",
|
|
26065
|
-
version: "1.110.
|
|
26085
|
+
version: "1.110.2",
|
|
26066
26086
|
bin: "./run.js",
|
|
26067
26087
|
main: "dist",
|
|
26068
26088
|
files: [
|
|
@@ -26085,7 +26105,7 @@ var package_default = {
|
|
|
26085
26105
|
devDependencies: {
|
|
26086
26106
|
"@expo/package-manager": "^1.1.2",
|
|
26087
26107
|
"@playwright/test": "^1.45.2",
|
|
26088
|
-
"@tamagui/build": "1.110.
|
|
26108
|
+
"@tamagui/build": "1.110.2",
|
|
26089
26109
|
"@types/async-retry": "1.4.2",
|
|
26090
26110
|
"@types/cross-spawn": "^6.0.2",
|
|
26091
26111
|
"@types/node": "^22.1.0",
|