@stacksjs/actions 0.70.1 → 0.70.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/build.js +3 -3
- package/dist/{chunk-7amvdrgs.js → chunk-6jdq6549.js} +3 -3
- package/dist/{chunk-bzpwrj82.js → chunk-8swsxabt.js} +3 -3
- package/dist/{chunk-kw5hbw3s.js → chunk-8tjc3whz.js} +207 -37
- package/dist/{chunk-fksbe52b.js → chunk-v1qz355d.js} +3 -3
- package/dist/{chunk-nm3scdc6.js → chunk-w6fdq4hk.js} +64 -61
- package/dist/database/seed.js +2 -2
- package/dist/generate/component-meta.js +1 -1
- package/dist/generate/index.js +3 -3
- package/dist/helpers/component-meta.js +7 -32
- package/dist/index.js +3 -3
- package/dist/release.js +3 -3
- package/dist/upgrade.js +1 -1
- package/package.json +17 -17
package/dist/build.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
import {
|
|
3
3
|
generateTypes
|
|
4
4
|
} from "./generate/index.js";
|
|
5
|
-
import"./chunk-
|
|
5
|
+
import"./chunk-v1qz355d.js";
|
|
6
6
|
import"./helpers/vscode-custom-data.js";
|
|
7
7
|
import"./chunk-494jp8d5.js";
|
|
8
|
-
import"./chunk-
|
|
8
|
+
import"./chunk-8tjc3whz.js";
|
|
9
9
|
import"./chunk-fxan91t8.js";
|
|
10
|
-
import"./chunk-
|
|
10
|
+
import"./chunk-w6fdq4hk.js";
|
|
11
11
|
import"./chunk-wkwtsvym.js";
|
|
12
12
|
import"./chunk-ze46550n.js";
|
|
13
13
|
import"./helpers/utils.js";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
route
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import"./chunk-
|
|
4
|
+
} from "./chunk-v1qz355d.js";
|
|
5
|
+
import"./chunk-8tjc3whz.js";
|
|
6
6
|
import"./chunk-fxan91t8.js";
|
|
7
|
-
import"./chunk-
|
|
7
|
+
import"./chunk-w6fdq4hk.js";
|
|
8
8
|
import"./chunk-wkwtsvym.js";
|
|
9
9
|
import"./chunk-9v6qtbez.js";
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
route
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import"./chunk-
|
|
4
|
+
} from "./chunk-v1qz355d.js";
|
|
5
|
+
import"./chunk-8tjc3whz.js";
|
|
6
6
|
import"./chunk-fxan91t8.js";
|
|
7
|
-
import"./chunk-
|
|
7
|
+
import"./chunk-w6fdq4hk.js";
|
|
8
8
|
import"./chunk-wkwtsvym.js";
|
|
9
9
|
import"./chunk-9v6qtbez.js";
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-fxan91t8.js";
|
|
5
5
|
import {
|
|
6
6
|
require_lib
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-w6fdq4hk.js";
|
|
8
8
|
import {
|
|
9
9
|
camelCase,
|
|
10
10
|
kebabCase,
|
|
@@ -6023,10 +6023,10 @@ ${errors.join(`
|
|
|
6023
6023
|
return (type, opts = {}) => {
|
|
6024
6024
|
let defined = opts.aliases;
|
|
6025
6025
|
if (!defined) {
|
|
6026
|
-
var _store$opts$inherits
|
|
6026
|
+
var _store$opts$inherits$;
|
|
6027
6027
|
if (opts.inherits)
|
|
6028
6028
|
defined = (_store$opts$inherits$ = store[opts.inherits].aliases) == null ? undefined : _store$opts$inherits$.slice();
|
|
6029
|
-
|
|
6029
|
+
defined != null || (defined = []);
|
|
6030
6030
|
opts.aliases = defined;
|
|
6031
6031
|
}
|
|
6032
6032
|
const additional = aliases.filter((a) => !defined.includes(a));
|
|
@@ -21461,7 +21461,7 @@ var require_typescript2 = __commonJS((exports) => {
|
|
|
21461
21461
|
this.word("static");
|
|
21462
21462
|
this.space();
|
|
21463
21463
|
}
|
|
21464
|
-
printModifiersList(this, node, [!isPrivateField && node.
|
|
21464
|
+
printModifiersList(this, node, [!isPrivateField && node.abstract && "abstract", !isPrivateField && node.override && "override", (isPublicField || isPrivateField) && node.readonly && "readonly"]);
|
|
21465
21465
|
}
|
|
21466
21466
|
function printBraced(printer, node, cb) {
|
|
21467
21467
|
printer.token("{");
|
|
@@ -23669,7 +23669,7 @@ var require_visitors = __commonJS((exports) => {
|
|
|
23669
23669
|
if (shouldIgnoreKey(nodeType))
|
|
23670
23670
|
continue;
|
|
23671
23671
|
if (!TYPES.includes(nodeType)) {
|
|
23672
|
-
throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${"7.26.
|
|
23672
|
+
throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${"7.26.10"}`);
|
|
23673
23673
|
}
|
|
23674
23674
|
const visitors = visitor[nodeType];
|
|
23675
23675
|
if (typeof visitors === "object") {
|
|
@@ -26490,9 +26490,17 @@ var require_globals = __commonJS((exports, module) => {
|
|
|
26490
26490
|
version: false
|
|
26491
26491
|
},
|
|
26492
26492
|
serviceworker: {
|
|
26493
|
+
AbortController: false,
|
|
26494
|
+
AbortPaymentEvent: false,
|
|
26495
|
+
AbortSignal: false,
|
|
26493
26496
|
addEventListener: false,
|
|
26494
|
-
applicationCache: false,
|
|
26495
26497
|
atob: false,
|
|
26498
|
+
BackgroundFetchEvent: false,
|
|
26499
|
+
BackgroundFetchManager: false,
|
|
26500
|
+
BackgroundFetchRecord: false,
|
|
26501
|
+
BackgroundFetchRegistration: false,
|
|
26502
|
+
BackgroundFetchUpdateUIEvent: false,
|
|
26503
|
+
BarcodeDetector: false,
|
|
26496
26504
|
Blob: false,
|
|
26497
26505
|
BroadcastChannel: false,
|
|
26498
26506
|
btoa: false,
|
|
@@ -26500,29 +26508,100 @@ var require_globals = __commonJS((exports, module) => {
|
|
|
26500
26508
|
Cache: false,
|
|
26501
26509
|
caches: false,
|
|
26502
26510
|
CacheStorage: false,
|
|
26511
|
+
CanMakePaymentEvent: false,
|
|
26512
|
+
CanvasGradient: false,
|
|
26513
|
+
CanvasPattern: false,
|
|
26503
26514
|
clearInterval: false,
|
|
26504
26515
|
clearTimeout: false,
|
|
26505
26516
|
Client: false,
|
|
26506
26517
|
clients: false,
|
|
26507
26518
|
Clients: false,
|
|
26508
|
-
|
|
26519
|
+
CloseEvent: false,
|
|
26509
26520
|
CompressionStream: false,
|
|
26510
26521
|
console: false,
|
|
26522
|
+
cookieStore: false,
|
|
26523
|
+
CookieStore: false,
|
|
26524
|
+
CookieStoreManager: false,
|
|
26511
26525
|
CountQueuingStrategy: false,
|
|
26526
|
+
createImageBitmap: false,
|
|
26527
|
+
CropTarget: false,
|
|
26528
|
+
crossOriginIsolated: false,
|
|
26512
26529
|
crypto: false,
|
|
26513
26530
|
Crypto: false,
|
|
26514
26531
|
CryptoKey: false,
|
|
26532
|
+
CSSSkewX: false,
|
|
26533
|
+
CSSSkewY: false,
|
|
26515
26534
|
CustomEvent: false,
|
|
26516
26535
|
DecompressionStream: false,
|
|
26536
|
+
dispatchEvent: false,
|
|
26537
|
+
DOMException: false,
|
|
26538
|
+
DOMMatrix: false,
|
|
26539
|
+
DOMMatrixReadOnly: false,
|
|
26540
|
+
DOMPoint: false,
|
|
26541
|
+
DOMPointReadOnly: false,
|
|
26542
|
+
DOMQuad: false,
|
|
26543
|
+
DOMRect: false,
|
|
26544
|
+
DOMRectReadOnly: false,
|
|
26545
|
+
DOMStringList: false,
|
|
26517
26546
|
ErrorEvent: false,
|
|
26518
26547
|
Event: false,
|
|
26548
|
+
EventSource: false,
|
|
26549
|
+
EventTarget: false,
|
|
26550
|
+
ExtendableCookieChangeEvent: false,
|
|
26519
26551
|
ExtendableEvent: false,
|
|
26520
26552
|
ExtendableMessageEvent: false,
|
|
26521
26553
|
fetch: false,
|
|
26522
26554
|
FetchEvent: false,
|
|
26523
26555
|
File: false,
|
|
26524
|
-
|
|
26556
|
+
FileList: false,
|
|
26557
|
+
FileReader: false,
|
|
26558
|
+
FileSystemDirectoryHandle: false,
|
|
26559
|
+
FileSystemFileHandle: false,
|
|
26560
|
+
FileSystemHandle: false,
|
|
26561
|
+
FileSystemWritableFileStream: false,
|
|
26562
|
+
FontFace: false,
|
|
26563
|
+
fonts: false,
|
|
26525
26564
|
FormData: false,
|
|
26565
|
+
GPU: false,
|
|
26566
|
+
GPUAdapter: false,
|
|
26567
|
+
GPUAdapterInfo: false,
|
|
26568
|
+
GPUBindGroup: false,
|
|
26569
|
+
GPUBindGroupLayout: false,
|
|
26570
|
+
GPUBuffer: false,
|
|
26571
|
+
GPUBufferUsage: false,
|
|
26572
|
+
GPUCanvasContext: false,
|
|
26573
|
+
GPUColorWrite: false,
|
|
26574
|
+
GPUCommandBuffer: false,
|
|
26575
|
+
GPUCommandEncoder: false,
|
|
26576
|
+
GPUCompilationInfo: false,
|
|
26577
|
+
GPUCompilationMessage: false,
|
|
26578
|
+
GPUComputePassEncoder: false,
|
|
26579
|
+
GPUComputePipeline: false,
|
|
26580
|
+
GPUDevice: false,
|
|
26581
|
+
GPUDeviceLostInfo: false,
|
|
26582
|
+
GPUError: false,
|
|
26583
|
+
GPUExternalTexture: false,
|
|
26584
|
+
GPUInternalError: false,
|
|
26585
|
+
GPUMapMode: false,
|
|
26586
|
+
GPUOutOfMemoryError: false,
|
|
26587
|
+
GPUPipelineError: false,
|
|
26588
|
+
GPUPipelineLayout: false,
|
|
26589
|
+
GPUQuerySet: false,
|
|
26590
|
+
GPUQueue: false,
|
|
26591
|
+
GPURenderBundle: false,
|
|
26592
|
+
GPURenderBundleEncoder: false,
|
|
26593
|
+
GPURenderPassEncoder: false,
|
|
26594
|
+
GPURenderPipeline: false,
|
|
26595
|
+
GPUSampler: false,
|
|
26596
|
+
GPUShaderModule: false,
|
|
26597
|
+
GPUShaderStage: false,
|
|
26598
|
+
GPUSupportedFeatures: false,
|
|
26599
|
+
GPUSupportedLimits: false,
|
|
26600
|
+
GPUTexture: false,
|
|
26601
|
+
GPUTextureUsage: false,
|
|
26602
|
+
GPUTextureView: false,
|
|
26603
|
+
GPUUncapturedErrorEvent: false,
|
|
26604
|
+
GPUValidationError: false,
|
|
26526
26605
|
Headers: false,
|
|
26527
26606
|
IDBCursor: false,
|
|
26528
26607
|
IDBCursorWithValue: false,
|
|
@@ -26535,18 +26614,36 @@ var require_globals = __commonJS((exports, module) => {
|
|
|
26535
26614
|
IDBRequest: false,
|
|
26536
26615
|
IDBTransaction: false,
|
|
26537
26616
|
IDBVersionChangeEvent: false,
|
|
26617
|
+
ImageBitmap: false,
|
|
26618
|
+
ImageBitmapRenderingContext: false,
|
|
26538
26619
|
ImageData: false,
|
|
26539
26620
|
importScripts: false,
|
|
26540
26621
|
indexedDB: false,
|
|
26622
|
+
InstallEvent: false,
|
|
26623
|
+
isSecureContext: false,
|
|
26541
26624
|
location: false,
|
|
26625
|
+
Lock: false,
|
|
26626
|
+
LockManager: false,
|
|
26627
|
+
MediaCapabilities: false,
|
|
26542
26628
|
MessageChannel: false,
|
|
26543
26629
|
MessageEvent: false,
|
|
26544
26630
|
MessagePort: false,
|
|
26545
|
-
|
|
26631
|
+
NavigationPreloadManager: false,
|
|
26546
26632
|
navigator: false,
|
|
26633
|
+
NavigatorUAData: false,
|
|
26634
|
+
NetworkInformation: false,
|
|
26547
26635
|
Notification: false,
|
|
26548
|
-
|
|
26549
|
-
|
|
26636
|
+
NotificationEvent: false,
|
|
26637
|
+
OffscreenCanvas: false,
|
|
26638
|
+
OffscreenCanvasRenderingContext2D: false,
|
|
26639
|
+
onabortpayment: true,
|
|
26640
|
+
onactivate: true,
|
|
26641
|
+
onbackgroundfetchabort: true,
|
|
26642
|
+
onbackgroundfetchclick: true,
|
|
26643
|
+
onbackgroundfetchfail: true,
|
|
26644
|
+
onbackgroundfetchsuccess: true,
|
|
26645
|
+
oncanmakepayment: true,
|
|
26646
|
+
oncookiechange: true,
|
|
26550
26647
|
onerror: true,
|
|
26551
26648
|
onfetch: true,
|
|
26552
26649
|
oninstall: true,
|
|
@@ -26555,24 +26652,35 @@ var require_globals = __commonJS((exports, module) => {
|
|
|
26555
26652
|
onmessageerror: true,
|
|
26556
26653
|
onnotificationclick: true,
|
|
26557
26654
|
onnotificationclose: true,
|
|
26558
|
-
|
|
26559
|
-
|
|
26655
|
+
onpaymentrequest: true,
|
|
26656
|
+
onperiodicsync: true,
|
|
26560
26657
|
onpush: true,
|
|
26561
26658
|
onpushsubscriptionchange: true,
|
|
26562
26659
|
onrejectionhandled: true,
|
|
26563
26660
|
onsync: true,
|
|
26564
26661
|
onunhandledrejection: true,
|
|
26662
|
+
origin: false,
|
|
26663
|
+
Path2D: false,
|
|
26664
|
+
PaymentRequestEvent: false,
|
|
26565
26665
|
performance: false,
|
|
26566
26666
|
Performance: false,
|
|
26567
26667
|
PerformanceEntry: false,
|
|
26568
26668
|
PerformanceMark: false,
|
|
26569
26669
|
PerformanceMeasure: false,
|
|
26570
|
-
PerformanceNavigation: false,
|
|
26571
26670
|
PerformanceObserver: false,
|
|
26572
26671
|
PerformanceObserverEntryList: false,
|
|
26573
26672
|
PerformanceResourceTiming: false,
|
|
26574
|
-
|
|
26575
|
-
|
|
26673
|
+
PerformanceServerTiming: false,
|
|
26674
|
+
PeriodicSyncEvent: false,
|
|
26675
|
+
PeriodicSyncManager: false,
|
|
26676
|
+
Permissions: false,
|
|
26677
|
+
PermissionStatus: false,
|
|
26678
|
+
PromiseRejectionEvent: false,
|
|
26679
|
+
PushEvent: false,
|
|
26680
|
+
PushManager: false,
|
|
26681
|
+
PushMessageData: false,
|
|
26682
|
+
PushSubscription: false,
|
|
26683
|
+
PushSubscriptionOptions: false,
|
|
26576
26684
|
queueMicrotask: false,
|
|
26577
26685
|
ReadableByteStreamController: false,
|
|
26578
26686
|
ReadableStream: false,
|
|
@@ -26582,35 +26690,82 @@ var require_globals = __commonJS((exports, module) => {
|
|
|
26582
26690
|
ReadableStreamDefaultReader: false,
|
|
26583
26691
|
registration: false,
|
|
26584
26692
|
removeEventListener: false,
|
|
26693
|
+
reportError: false,
|
|
26694
|
+
ReportingObserver: false,
|
|
26585
26695
|
Request: false,
|
|
26586
26696
|
Response: false,
|
|
26697
|
+
scheduler: false,
|
|
26698
|
+
Scheduler: false,
|
|
26699
|
+
SecurityPolicyViolationEvent: false,
|
|
26587
26700
|
self: false,
|
|
26701
|
+
serviceWorker: false,
|
|
26588
26702
|
ServiceWorker: false,
|
|
26589
|
-
ServiceWorkerContainer: false,
|
|
26590
26703
|
ServiceWorkerGlobalScope: false,
|
|
26591
|
-
ServiceWorkerMessageEvent: false,
|
|
26592
26704
|
ServiceWorkerRegistration: false,
|
|
26593
26705
|
setInterval: false,
|
|
26594
26706
|
setTimeout: false,
|
|
26595
26707
|
skipWaiting: false,
|
|
26708
|
+
StorageBucket: false,
|
|
26709
|
+
StorageBucketManager: false,
|
|
26710
|
+
StorageManager: false,
|
|
26711
|
+
structuredClone: false,
|
|
26596
26712
|
SubtleCrypto: false,
|
|
26713
|
+
SyncEvent: false,
|
|
26714
|
+
SyncManager: false,
|
|
26715
|
+
TaskController: false,
|
|
26716
|
+
TaskPriorityChangeEvent: false,
|
|
26717
|
+
TaskSignal: false,
|
|
26597
26718
|
TextDecoder: false,
|
|
26598
26719
|
TextDecoderStream: false,
|
|
26599
26720
|
TextEncoder: false,
|
|
26600
26721
|
TextEncoderStream: false,
|
|
26722
|
+
TextMetrics: false,
|
|
26601
26723
|
TransformStream: false,
|
|
26602
26724
|
TransformStreamDefaultController: false,
|
|
26725
|
+
TrustedHTML: false,
|
|
26726
|
+
TrustedScript: false,
|
|
26727
|
+
TrustedScriptURL: false,
|
|
26728
|
+
TrustedTypePolicy: false,
|
|
26729
|
+
TrustedTypePolicyFactory: false,
|
|
26730
|
+
trustedTypes: false,
|
|
26603
26731
|
URL: false,
|
|
26732
|
+
URLPattern: false,
|
|
26604
26733
|
URLSearchParams: false,
|
|
26734
|
+
UserActivation: false,
|
|
26605
26735
|
WebAssembly: false,
|
|
26736
|
+
WebGL2RenderingContext: false,
|
|
26737
|
+
WebGLActiveInfo: false,
|
|
26738
|
+
WebGLBuffer: false,
|
|
26739
|
+
WebGLContextEvent: false,
|
|
26740
|
+
WebGLFramebuffer: false,
|
|
26741
|
+
WebGLObject: false,
|
|
26742
|
+
WebGLProgram: false,
|
|
26743
|
+
WebGLQuery: false,
|
|
26744
|
+
WebGLRenderbuffer: false,
|
|
26745
|
+
WebGLRenderingContext: false,
|
|
26746
|
+
WebGLSampler: false,
|
|
26747
|
+
WebGLShader: false,
|
|
26748
|
+
WebGLShaderPrecisionFormat: false,
|
|
26749
|
+
WebGLSync: false,
|
|
26750
|
+
WebGLTexture: false,
|
|
26751
|
+
WebGLTransformFeedback: false,
|
|
26752
|
+
WebGLUniformLocation: false,
|
|
26753
|
+
WebGLVertexArrayObject: false,
|
|
26606
26754
|
WebSocket: false,
|
|
26755
|
+
WebSocketError: false,
|
|
26756
|
+
WebSocketStream: false,
|
|
26757
|
+
WebTransport: false,
|
|
26758
|
+
WebTransportBidirectionalStream: false,
|
|
26759
|
+
WebTransportDatagramDuplexStream: false,
|
|
26760
|
+
WebTransportError: false,
|
|
26761
|
+
WGSLLanguageFeatures: false,
|
|
26607
26762
|
WindowClient: false,
|
|
26608
|
-
Worker: false,
|
|
26609
26763
|
WorkerGlobalScope: false,
|
|
26764
|
+
WorkerLocation: false,
|
|
26765
|
+
WorkerNavigator: false,
|
|
26610
26766
|
WritableStream: false,
|
|
26611
26767
|
WritableStreamDefaultController: false,
|
|
26612
|
-
WritableStreamDefaultWriter: false
|
|
26613
|
-
XMLHttpRequest: false
|
|
26768
|
+
WritableStreamDefaultWriter: false
|
|
26614
26769
|
},
|
|
26615
26770
|
"shared-node-browser": {
|
|
26616
26771
|
AbortController: false,
|
|
@@ -27080,20 +27235,19 @@ var require_cache = __commonJS((exports) => {
|
|
|
27080
27235
|
}
|
|
27081
27236
|
var nullHub = Object.freeze({});
|
|
27082
27237
|
function getCachedPaths(hub, parent) {
|
|
27083
|
-
var _pathsCache$get
|
|
27238
|
+
var _pathsCache$get;
|
|
27084
27239
|
{
|
|
27085
27240
|
hub = null;
|
|
27086
27241
|
}
|
|
27087
|
-
return (_pathsCache$get = pathsCache.get(
|
|
27242
|
+
return (_pathsCache$get = pathsCache.get(hub != null ? hub : nullHub)) == null ? undefined : _pathsCache$get.get(parent);
|
|
27088
27243
|
}
|
|
27089
27244
|
function getOrCreateCachedPaths(hub, parent) {
|
|
27090
|
-
var _hub2, _hub3;
|
|
27091
27245
|
{
|
|
27092
27246
|
hub = null;
|
|
27093
27247
|
}
|
|
27094
|
-
let parents = pathsCache.get(
|
|
27248
|
+
let parents = pathsCache.get(hub != null ? hub : nullHub);
|
|
27095
27249
|
if (!parents)
|
|
27096
|
-
pathsCache.set(
|
|
27250
|
+
pathsCache.set(hub != null ? hub : nullHub, parents = new WeakMap);
|
|
27097
27251
|
let paths = parents.get(parent);
|
|
27098
27252
|
if (!paths)
|
|
27099
27253
|
parents.set(parent, paths = new Map);
|
|
@@ -28017,8 +28171,7 @@ var require_scope = __commonJS((exports) => {
|
|
|
28017
28171
|
let firstId;
|
|
28018
28172
|
const init = [];
|
|
28019
28173
|
for (const decl of parent.declarations) {
|
|
28020
|
-
|
|
28021
|
-
(_firstId = firstId) != null || (firstId = decl.id);
|
|
28174
|
+
firstId != null || (firstId = decl.id);
|
|
28022
28175
|
if (decl.init) {
|
|
28023
28176
|
init.push(assignmentExpression("=", decl.id, decl.init));
|
|
28024
28177
|
}
|
|
@@ -30060,6 +30213,23 @@ var require_evaluation = __commonJS((exports) => {
|
|
|
30060
30213
|
deopt(binding.path, state);
|
|
30061
30214
|
return;
|
|
30062
30215
|
}
|
|
30216
|
+
const bindingPathScope = binding.path.scope;
|
|
30217
|
+
if (binding.kind === "var" && bindingPathScope !== binding.scope) {
|
|
30218
|
+
let hasUnsafeBlock = !bindingPathScope.path.parentPath.isBlockStatement();
|
|
30219
|
+
for (let scope = bindingPathScope.parent;scope; scope = scope.parent) {
|
|
30220
|
+
var _scope$path$parentPat;
|
|
30221
|
+
if (scope === path.scope) {
|
|
30222
|
+
if (hasUnsafeBlock) {
|
|
30223
|
+
deopt(binding.path, state);
|
|
30224
|
+
return;
|
|
30225
|
+
}
|
|
30226
|
+
break;
|
|
30227
|
+
}
|
|
30228
|
+
if ((_scope$path$parentPat = scope.path.parentPath) != null && _scope$path$parentPat.isBlockStatement()) {
|
|
30229
|
+
hasUnsafeBlock = true;
|
|
30230
|
+
}
|
|
30231
|
+
}
|
|
30232
|
+
}
|
|
30063
30233
|
if (binding.hasValue) {
|
|
30064
30234
|
return binding.value;
|
|
30065
30235
|
}
|
|
@@ -31094,8 +31264,7 @@ var require_conversion = __commonJS((exports) => {
|
|
|
31094
31264
|
let arrowParent;
|
|
31095
31265
|
let thisEnvFn = fnPath.findParent((p) => {
|
|
31096
31266
|
if (p.isArrowFunctionExpression()) {
|
|
31097
|
-
|
|
31098
|
-
(_arrowParent = arrowParent) != null || (arrowParent = p);
|
|
31267
|
+
arrowParent != null || (arrowParent = p);
|
|
31099
31268
|
return false;
|
|
31100
31269
|
}
|
|
31101
31270
|
return p.isFunction() || p.isProgram() || p.isClassProperty({
|
|
@@ -39387,13 +39556,14 @@ var require_lib10 = __commonJS((exports) => {
|
|
|
39387
39556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39388
39557
|
exports.createLRU = undefined;
|
|
39389
39558
|
var createLRU = (options) => {
|
|
39390
|
-
let { max
|
|
39559
|
+
let { max } = options;
|
|
39391
39560
|
if (!(Number.isInteger(max) && max > 0))
|
|
39392
39561
|
throw new TypeError("`max` must be a positive integer");
|
|
39393
39562
|
let size = 0;
|
|
39394
39563
|
let head = 0;
|
|
39395
39564
|
let tail = 0;
|
|
39396
39565
|
let free = [];
|
|
39566
|
+
const { onEviction } = options;
|
|
39397
39567
|
const keyMap = new Map;
|
|
39398
39568
|
const keyList = new Array(max).fill(undefined);
|
|
39399
39569
|
const valList = new Array(max).fill(undefined);
|
|
@@ -59550,7 +59720,7 @@ var require_query3 = __commonJS((exports, module) => {
|
|
|
59550
59720
|
module.exports = Query;
|
|
59551
59721
|
});
|
|
59552
59722
|
|
|
59553
|
-
// ../../../../node_modules/pg
|
|
59723
|
+
// ../../../../node_modules/pg-protocol/dist/messages.js
|
|
59554
59724
|
var require_messages = __commonJS((exports) => {
|
|
59555
59725
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59556
59726
|
exports.NoticeMessage = exports.DataRowMessage = exports.CommandCompleteMessage = exports.ReadyForQueryMessage = exports.NotificationResponseMessage = exports.BackendKeyDataMessage = exports.AuthenticationMD5Password = exports.ParameterStatusMessage = exports.ParameterDescriptionMessage = exports.RowDescriptionMessage = exports.Field = exports.CopyResponse = exports.CopyDataMessage = exports.DatabaseError = exports.copyDone = exports.emptyQuery = exports.replicationStart = exports.portalSuspended = exports.noData = exports.closeComplete = exports.bindComplete = exports.parseComplete = undefined;
|
|
@@ -59726,7 +59896,7 @@ var require_messages = __commonJS((exports) => {
|
|
|
59726
59896
|
exports.NoticeMessage = NoticeMessage;
|
|
59727
59897
|
});
|
|
59728
59898
|
|
|
59729
|
-
// ../../../../node_modules/pg
|
|
59899
|
+
// ../../../../node_modules/pg-protocol/dist/buffer-writer.js
|
|
59730
59900
|
var require_buffer_writer = __commonJS((exports) => {
|
|
59731
59901
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59732
59902
|
exports.Writer = undefined;
|
|
@@ -59805,7 +59975,7 @@ var require_buffer_writer = __commonJS((exports) => {
|
|
|
59805
59975
|
exports.Writer = Writer;
|
|
59806
59976
|
});
|
|
59807
59977
|
|
|
59808
|
-
// ../../../../node_modules/pg
|
|
59978
|
+
// ../../../../node_modules/pg-protocol/dist/serializer.js
|
|
59809
59979
|
var require_serializer = __commonJS((exports) => {
|
|
59810
59980
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59811
59981
|
exports.serialize = undefined;
|
|
@@ -59967,7 +60137,7 @@ var require_serializer = __commonJS((exports) => {
|
|
|
59967
60137
|
exports.serialize = serialize;
|
|
59968
60138
|
});
|
|
59969
60139
|
|
|
59970
|
-
// ../../../../node_modules/pg
|
|
60140
|
+
// ../../../../node_modules/pg-protocol/dist/buffer-reader.js
|
|
59971
60141
|
var require_buffer_reader = __commonJS((exports) => {
|
|
59972
60142
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59973
60143
|
exports.BufferReader = undefined;
|
|
@@ -60024,7 +60194,7 @@ var require_buffer_reader = __commonJS((exports) => {
|
|
|
60024
60194
|
exports.BufferReader = BufferReader;
|
|
60025
60195
|
});
|
|
60026
60196
|
|
|
60027
|
-
// ../../../../node_modules/pg
|
|
60197
|
+
// ../../../../node_modules/pg-protocol/dist/parser.js
|
|
60028
60198
|
var require_parser = __commonJS((exports) => {
|
|
60029
60199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60030
60200
|
exports.Parser = undefined;
|
|
@@ -60313,7 +60483,7 @@ var require_parser = __commonJS((exports) => {
|
|
|
60313
60483
|
exports.Parser = Parser;
|
|
60314
60484
|
});
|
|
60315
60485
|
|
|
60316
|
-
// ../../../../node_modules/pg
|
|
60486
|
+
// ../../../../node_modules/pg-protocol/dist/index.js
|
|
60317
60487
|
var require_dist2 = __commonJS((exports) => {
|
|
60318
60488
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60319
60489
|
exports.DatabaseError = exports.serialize = exports.parse = undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
db
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-8tjc3whz.js";
|
|
4
4
|
import {
|
|
5
5
|
customValidate,
|
|
6
6
|
isObjectNotEmpty,
|
|
@@ -319,8 +319,8 @@ class Router {
|
|
|
319
319
|
return this.routes;
|
|
320
320
|
}
|
|
321
321
|
async importRoutes() {
|
|
322
|
-
await import("./chunk-
|
|
323
|
-
await import("./chunk-
|
|
322
|
+
await import("./chunk-6jdq6549.js");
|
|
323
|
+
await import("./chunk-8swsxabt.js");
|
|
324
324
|
}
|
|
325
325
|
async resolveCallback(callback) {
|
|
326
326
|
if (callback instanceof Promise) {
|
|
@@ -13,7 +13,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
13
13
|
var t = {};
|
|
14
14
|
for (var n in r)
|
|
15
15
|
if ({}.hasOwnProperty.call(r, n)) {
|
|
16
|
-
if (e.
|
|
16
|
+
if (e.indexOf(n) !== -1)
|
|
17
17
|
continue;
|
|
18
18
|
t[n] = r[n];
|
|
19
19
|
}
|
|
@@ -4861,8 +4861,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
4861
4861
|
}
|
|
4862
4862
|
}
|
|
4863
4863
|
flowParseQualifiedTypeIdentifier(startLoc, id) {
|
|
4864
|
-
|
|
4865
|
-
(_startLoc = startLoc) != null || (startLoc = this.state.startLoc);
|
|
4864
|
+
startLoc != null || (startLoc = this.state.startLoc);
|
|
4866
4865
|
let node = id || this.flowParseRestrictedIdentifier(true);
|
|
4867
4866
|
while (this.eat(16)) {
|
|
4868
4867
|
const node2 = this.startNodeAt(startLoc);
|
|
@@ -7338,14 +7337,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
7338
7337
|
const elt = exprList[i];
|
|
7339
7338
|
if (!elt)
|
|
7340
7339
|
continue;
|
|
7341
|
-
|
|
7342
|
-
elt.type = "RestElement";
|
|
7343
|
-
const arg = elt.argument;
|
|
7344
|
-
this.checkToRestConversion(arg, true);
|
|
7345
|
-
this.toAssignable(arg, isLHS);
|
|
7346
|
-
} else {
|
|
7347
|
-
this.toAssignable(elt, isLHS);
|
|
7348
|
-
}
|
|
7340
|
+
this.toAssignableListItem(exprList, i, isLHS);
|
|
7349
7341
|
if (elt.type === "RestElement") {
|
|
7350
7342
|
if (i < end) {
|
|
7351
7343
|
this.raise(Errors.RestTrailingComma, elt);
|
|
@@ -7355,6 +7347,17 @@ var require_lib = __commonJS((exports) => {
|
|
|
7355
7347
|
}
|
|
7356
7348
|
}
|
|
7357
7349
|
}
|
|
7350
|
+
toAssignableListItem(exprList, index, isLHS) {
|
|
7351
|
+
const node = exprList[index];
|
|
7352
|
+
if (node.type === "SpreadElement") {
|
|
7353
|
+
node.type = "RestElement";
|
|
7354
|
+
const arg = node.argument;
|
|
7355
|
+
this.checkToRestConversion(arg, true);
|
|
7356
|
+
this.toAssignable(arg, isLHS);
|
|
7357
|
+
} else {
|
|
7358
|
+
this.toAssignable(node, isLHS);
|
|
7359
|
+
}
|
|
7360
|
+
}
|
|
7358
7361
|
isAssignable(node, isBinding) {
|
|
7359
7362
|
switch (node.type) {
|
|
7360
7363
|
case "Identifier":
|
|
@@ -7448,13 +7451,15 @@ var require_lib = __commonJS((exports) => {
|
|
|
7448
7451
|
}
|
|
7449
7452
|
} else {
|
|
7450
7453
|
const decorators = [];
|
|
7451
|
-
if (
|
|
7452
|
-
this.
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
|
|
7454
|
+
if (flags & 2) {
|
|
7455
|
+
if (this.match(26) && this.hasPlugin("decorators")) {
|
|
7456
|
+
this.raise(Errors.UnsupportedParameterDecorator, this.state.startLoc);
|
|
7457
|
+
}
|
|
7458
|
+
while (this.match(26)) {
|
|
7459
|
+
decorators.push(this.parseDecorator());
|
|
7460
|
+
}
|
|
7456
7461
|
}
|
|
7457
|
-
elts.push(this.
|
|
7462
|
+
elts.push(this.parseBindingElement(flags, decorators));
|
|
7458
7463
|
}
|
|
7459
7464
|
}
|
|
7460
7465
|
return elts;
|
|
@@ -7484,7 +7489,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
7484
7489
|
prop.method = false;
|
|
7485
7490
|
return this.parseObjPropValue(prop, startLoc, false, false, true, false);
|
|
7486
7491
|
}
|
|
7487
|
-
|
|
7492
|
+
parseBindingElement(flags, decorators) {
|
|
7488
7493
|
const left = this.parseMaybeDefault();
|
|
7489
7494
|
if (this.hasPlugin("flow") || flags & 2) {
|
|
7490
7495
|
this.parseFunctionParamType(left);
|
|
@@ -7499,9 +7504,8 @@ var require_lib = __commonJS((exports) => {
|
|
|
7499
7504
|
return param;
|
|
7500
7505
|
}
|
|
7501
7506
|
parseMaybeDefault(startLoc, left) {
|
|
7502
|
-
|
|
7503
|
-
|
|
7504
|
-
left = (_left = left) != null ? _left : this.parseBindingAtom();
|
|
7507
|
+
startLoc != null || (startLoc = this.state.startLoc);
|
|
7508
|
+
left = left != null ? left : this.parseBindingAtom();
|
|
7505
7509
|
if (!this.eat(29))
|
|
7506
7510
|
return left;
|
|
7507
7511
|
const node = this.startNodeAt(startLoc);
|
|
@@ -7695,6 +7699,9 @@ var require_lib = __commonJS((exports) => {
|
|
|
7695
7699
|
IndexSignatureHasOverride: "'override' modifier cannot appear on an index signature.",
|
|
7696
7700
|
IndexSignatureHasStatic: "Index signatures cannot have the 'static' modifier.",
|
|
7697
7701
|
InitializerNotAllowedInAmbientContext: "Initializers are not allowed in ambient contexts.",
|
|
7702
|
+
InvalidHeritageClauseType: ({
|
|
7703
|
+
token
|
|
7704
|
+
}) => `'${token}' list can only include identifiers or qualified-names with optional type arguments.`,
|
|
7698
7705
|
InvalidModifierOnTypeMember: ({
|
|
7699
7706
|
modifier
|
|
7700
7707
|
}) => `'${modifier}' modifier cannot appear on a type member.`,
|
|
@@ -8754,8 +8761,8 @@ var require_lib = __commonJS((exports) => {
|
|
|
8754
8761
|
tsParseHeritageClause(token) {
|
|
8755
8762
|
const originalStartLoc = this.state.startLoc;
|
|
8756
8763
|
const delimitedList = this.tsParseDelimitedList("HeritageClauseElement", () => {
|
|
8757
|
-
const node = this.startNode();
|
|
8758
8764
|
{
|
|
8765
|
+
const node = this.startNode();
|
|
8759
8766
|
node.expression = this.tsParseEntityName(1 | 2);
|
|
8760
8767
|
if (this.match(47)) {
|
|
8761
8768
|
node.typeParameters = this.tsParseTypeArguments();
|
|
@@ -9165,7 +9172,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
9165
9172
|
return false;
|
|
9166
9173
|
return super.isExportDefaultSpecifier();
|
|
9167
9174
|
}
|
|
9168
|
-
|
|
9175
|
+
parseBindingElement(flags, decorators) {
|
|
9169
9176
|
const startLoc = this.state.startLoc;
|
|
9170
9177
|
const modified = {};
|
|
9171
9178
|
this.tsParseModifiers({
|
|
@@ -9602,19 +9609,16 @@ var require_lib = __commonJS((exports) => {
|
|
|
9602
9609
|
return super.shouldParseExportDeclaration();
|
|
9603
9610
|
}
|
|
9604
9611
|
parseConditional(expr, startLoc, refExpressionErrors) {
|
|
9605
|
-
if (!this.
|
|
9606
|
-
return super.parseConditional(expr, startLoc, refExpressionErrors);
|
|
9607
|
-
}
|
|
9608
|
-
const result = this.tryParse(() => super.parseConditional(expr, startLoc));
|
|
9609
|
-
if (!result.node) {
|
|
9610
|
-
if (result.error) {
|
|
9611
|
-
super.setOptionalParametersError(refExpressionErrors, result.error);
|
|
9612
|
-
}
|
|
9612
|
+
if (!this.match(17))
|
|
9613
9613
|
return expr;
|
|
9614
|
+
if (this.state.maybeInArrowParameters) {
|
|
9615
|
+
const nextCh = this.lookaheadCharCode();
|
|
9616
|
+
if (nextCh === 44 || nextCh === 61 || nextCh === 58 || nextCh === 41) {
|
|
9617
|
+
this.setOptionalParametersError(refExpressionErrors);
|
|
9618
|
+
return expr;
|
|
9619
|
+
}
|
|
9614
9620
|
}
|
|
9615
|
-
|
|
9616
|
-
this.state = result.failState;
|
|
9617
|
-
return result.node;
|
|
9621
|
+
return super.parseConditional(expr, startLoc, refExpressionErrors);
|
|
9618
9622
|
}
|
|
9619
9623
|
parseParenItem(node, startLoc) {
|
|
9620
9624
|
const newNode = super.parseParenItem(node, startLoc);
|
|
@@ -9844,8 +9848,8 @@ var require_lib = __commonJS((exports) => {
|
|
|
9844
9848
|
throw ((_jsx3 = jsx2) == null ? undefined : _jsx3.error) || arrow.error || ((_typeCast2 = typeCast) == null ? undefined : _typeCast2.error);
|
|
9845
9849
|
}
|
|
9846
9850
|
reportReservedArrowTypeParam(node) {
|
|
9847
|
-
var _node$
|
|
9848
|
-
if (node.params.length === 1 && !node.params[0].constraint && !((_node$
|
|
9851
|
+
var _node$extra2;
|
|
9852
|
+
if (node.params.length === 1 && !node.params[0].constraint && !((_node$extra2 = node.extra) != null && _node$extra2.trailingComma) && this.getPluginOption("typescript", "disallowAmbiguousJSXLike")) {
|
|
9849
9853
|
this.raise(TSErrors.ReservedArrowTypeParam, node);
|
|
9850
9854
|
}
|
|
9851
9855
|
}
|
|
@@ -9949,7 +9953,6 @@ var require_lib = __commonJS((exports) => {
|
|
|
9949
9953
|
case "TSParameterProperty":
|
|
9950
9954
|
return "parameter";
|
|
9951
9955
|
case "TSNonNullExpression":
|
|
9952
|
-
case "TSInstantiationExpression":
|
|
9953
9956
|
return "expression";
|
|
9954
9957
|
case "TSAsExpression":
|
|
9955
9958
|
case "TSSatisfiesExpression":
|
|
@@ -10035,14 +10038,12 @@ var require_lib = __commonJS((exports) => {
|
|
|
10035
10038
|
}
|
|
10036
10039
|
return type;
|
|
10037
10040
|
}
|
|
10038
|
-
|
|
10039
|
-
|
|
10040
|
-
|
|
10041
|
-
|
|
10042
|
-
exprList[i] = this.typeCastToParameter(expr);
|
|
10043
|
-
}
|
|
10041
|
+
toAssignableListItem(exprList, index, isLHS) {
|
|
10042
|
+
const node = exprList[index];
|
|
10043
|
+
if (node.type === "TSTypeCastExpression") {
|
|
10044
|
+
exprList[index] = this.typeCastToParameter(node);
|
|
10044
10045
|
}
|
|
10045
|
-
super.
|
|
10046
|
+
super.toAssignableListItem(exprList, index, isLHS);
|
|
10046
10047
|
}
|
|
10047
10048
|
typeCastToParameter(node) {
|
|
10048
10049
|
node.expression.typeAnnotation = node.typeAnnotation;
|
|
@@ -10618,18 +10619,18 @@ var require_lib = __commonJS((exports) => {
|
|
|
10618
10619
|
var mixinPluginNames = Object.keys(mixinPlugins);
|
|
10619
10620
|
|
|
10620
10621
|
class ExpressionParser extends LValParser {
|
|
10621
|
-
checkProto(prop, isRecord,
|
|
10622
|
+
checkProto(prop, isRecord, sawProto, refExpressionErrors) {
|
|
10622
10623
|
if (prop.type === "SpreadElement" || this.isObjectMethod(prop) || prop.computed || prop.shorthand) {
|
|
10623
|
-
return;
|
|
10624
|
+
return sawProto;
|
|
10624
10625
|
}
|
|
10625
10626
|
const key = prop.key;
|
|
10626
10627
|
const name = key.type === "Identifier" ? key.name : key.value;
|
|
10627
10628
|
if (name === "__proto__") {
|
|
10628
10629
|
if (isRecord) {
|
|
10629
10630
|
this.raise(Errors.RecordNoProto, key);
|
|
10630
|
-
return;
|
|
10631
|
+
return true;
|
|
10631
10632
|
}
|
|
10632
|
-
if (
|
|
10633
|
+
if (sawProto) {
|
|
10633
10634
|
if (refExpressionErrors) {
|
|
10634
10635
|
if (refExpressionErrors.doubleProtoLoc === null) {
|
|
10635
10636
|
refExpressionErrors.doubleProtoLoc = key.loc.start;
|
|
@@ -10638,8 +10639,9 @@ var require_lib = __commonJS((exports) => {
|
|
|
10638
10639
|
this.raise(Errors.DuplicateProto, key);
|
|
10639
10640
|
}
|
|
10640
10641
|
}
|
|
10641
|
-
|
|
10642
|
+
return true;
|
|
10642
10643
|
}
|
|
10644
|
+
return sawProto;
|
|
10643
10645
|
}
|
|
10644
10646
|
shouldExitDescending(expr, potentialArrowAt) {
|
|
10645
10647
|
return expr.type === "ArrowFunctionExpression" && this.offsetToSourcePos(expr.start) === potentialArrowAt;
|
|
@@ -10685,9 +10687,8 @@ var require_lib = __commonJS((exports) => {
|
|
|
10685
10687
|
parseMaybeAssignAllowIn(refExpressionErrors, afterLeftParse) {
|
|
10686
10688
|
return this.allowInAnd(() => this.parseMaybeAssign(refExpressionErrors, afterLeftParse));
|
|
10687
10689
|
}
|
|
10688
|
-
setOptionalParametersError(refExpressionErrors
|
|
10689
|
-
|
|
10690
|
-
refExpressionErrors.optionalParametersLoc = (_resultError$loc = resultError == null ? undefined : resultError.loc) != null ? _resultError$loc : this.state.startLoc;
|
|
10690
|
+
setOptionalParametersError(refExpressionErrors) {
|
|
10691
|
+
refExpressionErrors.optionalParametersLoc = this.state.startLoc;
|
|
10691
10692
|
}
|
|
10692
10693
|
parseMaybeAssign(refExpressionErrors, afterLeftParse) {
|
|
10693
10694
|
const startLoc = this.state.startLoc;
|
|
@@ -11679,7 +11680,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
11679
11680
|
}
|
|
11680
11681
|
const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;
|
|
11681
11682
|
this.state.inFSharpPipelineDirectBody = false;
|
|
11682
|
-
|
|
11683
|
+
let sawProto = false;
|
|
11683
11684
|
let first = true;
|
|
11684
11685
|
const node = this.startNode();
|
|
11685
11686
|
node.properties = [];
|
|
@@ -11699,7 +11700,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
11699
11700
|
prop = this.parseBindingProperty();
|
|
11700
11701
|
} else {
|
|
11701
11702
|
prop = this.parsePropertyDefinition(refExpressionErrors);
|
|
11702
|
-
this.checkProto(prop, isRecord,
|
|
11703
|
+
sawProto = this.checkProto(prop, isRecord, sawProto, refExpressionErrors);
|
|
11703
11704
|
}
|
|
11704
11705
|
if (isRecord && !this.isObjectProperty(prop) && prop.type !== "SpreadElement") {
|
|
11705
11706
|
this.raise(Errors.InvalidRecordProperty, prop);
|
|
@@ -12701,14 +12702,8 @@ var require_lib = __commonJS((exports) => {
|
|
|
12701
12702
|
let result;
|
|
12702
12703
|
if (startType === 83) {
|
|
12703
12704
|
result = this.parseImport(node);
|
|
12704
|
-
if (result.type === "ImportDeclaration" && (!result.importKind || result.importKind === "value")) {
|
|
12705
|
-
this.sawUnambiguousESM = true;
|
|
12706
|
-
}
|
|
12707
12705
|
} else {
|
|
12708
12706
|
result = this.parseExport(node, decorators);
|
|
12709
|
-
if (result.type === "ExportNamedDeclaration" && (!result.exportKind || result.exportKind === "value") || result.type === "ExportAllDeclaration" && (!result.exportKind || result.exportKind === "value") || result.type === "ExportDefaultDeclaration") {
|
|
12710
|
-
this.sawUnambiguousESM = true;
|
|
12711
|
-
}
|
|
12712
12707
|
}
|
|
12713
12708
|
this.assertModuleNodeAllowed(result);
|
|
12714
12709
|
return result;
|
|
@@ -13627,6 +13622,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
13627
13622
|
throw this.raise(Errors.UnsupportedDecoratorExport, node);
|
|
13628
13623
|
}
|
|
13629
13624
|
this.parseExportFrom(node, true);
|
|
13625
|
+
this.sawUnambiguousESM = true;
|
|
13630
13626
|
return this.finishNode(node, "ExportAllDeclaration");
|
|
13631
13627
|
}
|
|
13632
13628
|
const hasSpecifiers = this.maybeParseExportNamedSpecifiers(node);
|
|
@@ -13655,6 +13651,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
13655
13651
|
} else if (decorators) {
|
|
13656
13652
|
throw this.raise(Errors.UnsupportedDecoratorExport, node);
|
|
13657
13653
|
}
|
|
13654
|
+
this.sawUnambiguousESM = true;
|
|
13658
13655
|
return this.finishNode(node2, "ExportNamedDeclaration");
|
|
13659
13656
|
}
|
|
13660
13657
|
if (this.eat(65)) {
|
|
@@ -13667,6 +13664,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
13667
13664
|
throw this.raise(Errors.UnsupportedDecoratorExport, node);
|
|
13668
13665
|
}
|
|
13669
13666
|
this.checkExport(node2, true, true);
|
|
13667
|
+
this.sawUnambiguousESM = true;
|
|
13670
13668
|
return this.finishNode(node2, "ExportDefaultDeclaration");
|
|
13671
13669
|
}
|
|
13672
13670
|
this.unexpected(null, 5);
|
|
@@ -13705,10 +13703,12 @@ var require_lib = __commonJS((exports) => {
|
|
|
13705
13703
|
const isTypeExport = node2.exportKind === "type";
|
|
13706
13704
|
node2.specifiers.push(...this.parseExportSpecifiers(isTypeExport));
|
|
13707
13705
|
node2.source = null;
|
|
13708
|
-
node2.declaration = null;
|
|
13709
13706
|
if (this.hasPlugin("importAssertions")) {
|
|
13710
13707
|
node2.assertions = [];
|
|
13708
|
+
} else {
|
|
13709
|
+
node2.attributes = [];
|
|
13711
13710
|
}
|
|
13711
|
+
node2.declaration = null;
|
|
13712
13712
|
return true;
|
|
13713
13713
|
}
|
|
13714
13714
|
return false;
|
|
@@ -13719,6 +13719,8 @@ var require_lib = __commonJS((exports) => {
|
|
|
13719
13719
|
node.source = null;
|
|
13720
13720
|
if (this.hasPlugin("importAssertions")) {
|
|
13721
13721
|
node.assertions = [];
|
|
13722
|
+
} else {
|
|
13723
|
+
node.attributes = [];
|
|
13722
13724
|
}
|
|
13723
13725
|
node.declaration = this.parseExportDeclaration(node);
|
|
13724
13726
|
return true;
|
|
@@ -14087,6 +14089,7 @@ var require_lib = __commonJS((exports) => {
|
|
|
14087
14089
|
this.checkImportReflection(node);
|
|
14088
14090
|
this.checkJSONModuleImport(node);
|
|
14089
14091
|
this.semicolon();
|
|
14092
|
+
this.sawUnambiguousESM = true;
|
|
14090
14093
|
return this.finishNode(node, "ImportDeclaration");
|
|
14091
14094
|
}
|
|
14092
14095
|
parseImportSource() {
|
package/dist/database/seed.js
CHANGED
package/dist/generate/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
route
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-v1qz355d.js";
|
|
5
5
|
import {
|
|
6
6
|
generateVsCodeCustomData
|
|
7
7
|
} from "../helpers/vscode-custom-data.js";
|
|
8
8
|
import"../chunk-494jp8d5.js";
|
|
9
9
|
import {
|
|
10
10
|
generateModelFiles
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-8tjc3whz.js";
|
|
12
12
|
import"../chunk-fxan91t8.js";
|
|
13
|
-
import"../chunk-
|
|
13
|
+
import"../chunk-w6fdq4hk.js";
|
|
14
14
|
import"../chunk-wkwtsvym.js";
|
|
15
15
|
import"../chunk-ze46550n.js";
|
|
16
16
|
import {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
require_lib
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-w6fdq4hk.js";
|
|
5
5
|
import {
|
|
6
6
|
__commonJS,
|
|
7
7
|
__export,
|
|
@@ -189494,8 +189494,7 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189494
189494
|
return SubscriberFlags2;
|
|
189495
189495
|
})(SubscriberFlags || {});
|
|
189496
189496
|
function createReactiveSystem({ updateComputed, notifyEffect: notifyEffect2 }) {
|
|
189497
|
-
|
|
189498
|
-
let queuedEffectsTail;
|
|
189497
|
+
const queuedEffects = [];
|
|
189499
189498
|
return { link(dep, sub) {
|
|
189500
189499
|
const currentDep = sub.depsTail;
|
|
189501
189500
|
if (currentDep !== undefined && currentDep.dep === dep) {
|
|
@@ -189534,22 +189533,12 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189534
189533
|
continue;
|
|
189535
189534
|
}
|
|
189536
189535
|
if (subFlags & 2) {
|
|
189537
|
-
|
|
189538
|
-
queuedEffectsTail.depsTail.nextDep = sub.deps;
|
|
189539
|
-
} else {
|
|
189540
|
-
queuedEffects = sub;
|
|
189541
|
-
}
|
|
189542
|
-
queuedEffectsTail = sub;
|
|
189536
|
+
queuedEffects.push(sub);
|
|
189543
189537
|
}
|
|
189544
189538
|
} else if (!(subFlags & (4 | targetFlag))) {
|
|
189545
189539
|
sub.flags = subFlags | targetFlag | 8;
|
|
189546
189540
|
if ((subFlags & (2 | 8)) === 2) {
|
|
189547
|
-
|
|
189548
|
-
queuedEffectsTail.depsTail.nextDep = sub.deps;
|
|
189549
|
-
} else {
|
|
189550
|
-
queuedEffects = sub;
|
|
189551
|
-
}
|
|
189552
|
-
queuedEffectsTail = sub;
|
|
189541
|
+
queuedEffects.push(sub);
|
|
189553
189542
|
}
|
|
189554
189543
|
} else if (!(subFlags & targetFlag) && subFlags & 224 && isValidLink(link22, sub)) {
|
|
189555
189544
|
sub.flags = subFlags | targetFlag;
|
|
@@ -189619,17 +189608,8 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189619
189608
|
} while (link22 !== undefined);
|
|
189620
189609
|
}
|
|
189621
189610
|
}, processEffectNotifications() {
|
|
189622
|
-
while (queuedEffects
|
|
189623
|
-
const effect2 = queuedEffects;
|
|
189624
|
-
const depsTail = effect2.depsTail;
|
|
189625
|
-
const queuedNext = depsTail.nextDep;
|
|
189626
|
-
if (queuedNext !== undefined) {
|
|
189627
|
-
depsTail.nextDep = undefined;
|
|
189628
|
-
queuedEffects = queuedNext.sub;
|
|
189629
|
-
} else {
|
|
189630
|
-
queuedEffects = undefined;
|
|
189631
|
-
queuedEffectsTail = undefined;
|
|
189632
|
-
}
|
|
189611
|
+
while (queuedEffects.length) {
|
|
189612
|
+
const effect2 = queuedEffects.shift();
|
|
189633
189613
|
if (!notifyEffect2(effect2)) {
|
|
189634
189614
|
effect2.flags &= ~8;
|
|
189635
189615
|
}
|
|
@@ -189729,12 +189709,7 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189729
189709
|
if ((subFlags & (64 | 32)) === 64) {
|
|
189730
189710
|
sub.flags = subFlags | 32 | 8;
|
|
189731
189711
|
if ((subFlags & (2 | 8)) === 2) {
|
|
189732
|
-
|
|
189733
|
-
queuedEffectsTail.depsTail.nextDep = sub.deps;
|
|
189734
|
-
} else {
|
|
189735
|
-
queuedEffects = sub;
|
|
189736
|
-
}
|
|
189737
|
-
queuedEffectsTail = sub;
|
|
189712
|
+
queuedEffects.push(sub);
|
|
189738
189713
|
}
|
|
189739
189714
|
}
|
|
189740
189715
|
link22 = link22.nextSub;
|
package/dist/index.js
CHANGED
|
@@ -41,12 +41,12 @@ import {
|
|
|
41
41
|
generateWebTypes,
|
|
42
42
|
invoke
|
|
43
43
|
} from "./generate/index.js";
|
|
44
|
-
import"./chunk-
|
|
44
|
+
import"./chunk-v1qz355d.js";
|
|
45
45
|
import"./helpers/vscode-custom-data.js";
|
|
46
46
|
import"./chunk-494jp8d5.js";
|
|
47
|
-
import"./chunk-
|
|
47
|
+
import"./chunk-8tjc3whz.js";
|
|
48
48
|
import"./chunk-fxan91t8.js";
|
|
49
|
-
import"./chunk-
|
|
49
|
+
import"./chunk-w6fdq4hk.js";
|
|
50
50
|
import"./chunk-wkwtsvym.js";
|
|
51
51
|
import {
|
|
52
52
|
runApiDevServer,
|
package/dist/release.js
CHANGED
|
@@ -5,12 +5,12 @@ import"./commit.js";
|
|
|
5
5
|
import"./make.js";
|
|
6
6
|
import"./add.js";
|
|
7
7
|
import"./generate/index.js";
|
|
8
|
-
import"./chunk-
|
|
8
|
+
import"./chunk-v1qz355d.js";
|
|
9
9
|
import"./helpers/vscode-custom-data.js";
|
|
10
10
|
import"./chunk-494jp8d5.js";
|
|
11
|
-
import"./chunk-
|
|
11
|
+
import"./chunk-8tjc3whz.js";
|
|
12
12
|
import"./chunk-fxan91t8.js";
|
|
13
|
-
import"./chunk-
|
|
13
|
+
import"./chunk-w6fdq4hk.js";
|
|
14
14
|
import"./chunk-wkwtsvym.js";
|
|
15
15
|
import"./dev/index.js";
|
|
16
16
|
import"./chunk-ze46550n.js";
|
package/dist/upgrade.js
CHANGED
|
@@ -9,7 +9,7 @@ import { log } from "@stacksjs/logging";
|
|
|
9
9
|
import { projectPath } from "@stacksjs/path";
|
|
10
10
|
import * as storage from "@stacksjs/storage";
|
|
11
11
|
// package.json
|
|
12
|
-
var version = "0.70.
|
|
12
|
+
var version = "0.70.3";
|
|
13
13
|
|
|
14
14
|
// src/upgrade.ts
|
|
15
15
|
function checkForUncommittedChanges(options) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/actions",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.70.
|
|
4
|
+
"version": "0.70.3",
|
|
5
5
|
"description": "The Stacks actions.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
|
|
@@ -42,22 +42,22 @@
|
|
|
42
42
|
"prepublishOnly": "bun run build"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@stacksjs/api": "0.70.
|
|
46
|
-
"@stacksjs/cli": "0.70.
|
|
47
|
-
"@stacksjs/config": "0.70.
|
|
48
|
-
"@stacksjs/database": "0.70.
|
|
49
|
-
"@stacksjs/development": "0.70.
|
|
50
|
-
"@stacksjs/dns": "0.70.
|
|
51
|
-
"@stacksjs/enums": "0.70.
|
|
52
|
-
"@stacksjs/env": "0.70.
|
|
53
|
-
"@stacksjs/error-handling": "0.70.
|
|
54
|
-
"@stacksjs/logging": "0.70.
|
|
55
|
-
"@stacksjs/path": "0.70.
|
|
56
|
-
"@stacksjs/security": "0.70.
|
|
57
|
-
"@stacksjs/storage": "0.70.
|
|
58
|
-
"@stacksjs/strings": "0.70.
|
|
59
|
-
"@stacksjs/utils": "0.70.
|
|
60
|
-
"@stacksjs/validation": "0.70.
|
|
45
|
+
"@stacksjs/api": "0.70.2",
|
|
46
|
+
"@stacksjs/cli": "0.70.2",
|
|
47
|
+
"@stacksjs/config": "0.70.2",
|
|
48
|
+
"@stacksjs/database": "0.70.2",
|
|
49
|
+
"@stacksjs/development": "0.70.2",
|
|
50
|
+
"@stacksjs/dns": "0.70.2",
|
|
51
|
+
"@stacksjs/enums": "0.70.2",
|
|
52
|
+
"@stacksjs/env": "0.70.2",
|
|
53
|
+
"@stacksjs/error-handling": "0.70.2",
|
|
54
|
+
"@stacksjs/logging": "0.70.2",
|
|
55
|
+
"@stacksjs/path": "0.70.2",
|
|
56
|
+
"@stacksjs/security": "0.70.2",
|
|
57
|
+
"@stacksjs/storage": "0.70.2",
|
|
58
|
+
"@stacksjs/strings": "0.70.2",
|
|
59
|
+
"@stacksjs/utils": "0.70.2",
|
|
60
|
+
"@stacksjs/validation": "0.70.2",
|
|
61
61
|
"markdown-it": "^14.1.0",
|
|
62
62
|
"vue-component-meta": "^2.2.8"
|
|
63
63
|
}
|