@powerhousedao/builder-tools 6.2.2-dev.10 → 6.2.2-dev.12

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.d.mts CHANGED
@@ -434,6 +434,253 @@ declare const runtimeConfigSchema: {
434
434
  };
435
435
  };
436
436
  };
437
+ readonly pwa: {
438
+ readonly type: "object";
439
+ readonly additionalProperties: false;
440
+ readonly description: "Progressive-web-app / service-worker overrides, layered on Connect's built-in PWA defaults at build time. Scalar fields deep-merge (this layer wins); the array members (icons, file_handlers, globs, runtimeCaching and denylist patterns) are additive; maximumFileSizeToCacheInBytes takes the max across contributors. (categories is not set here \u2014 it is derived from the manifest's category field.) Only applied when connect.app.offline is true.";
441
+ readonly properties: {
442
+ readonly manifest: {
443
+ readonly type: "object";
444
+ readonly additionalProperties: false;
445
+ readonly description: "Web-app-manifest field overrides.";
446
+ readonly properties: {
447
+ readonly name: {
448
+ readonly type: "string";
449
+ };
450
+ readonly short_name: {
451
+ readonly type: "string";
452
+ };
453
+ readonly description: {
454
+ readonly type: "string";
455
+ };
456
+ readonly theme_color: {
457
+ readonly type: "string";
458
+ };
459
+ readonly background_color: {
460
+ readonly type: "string";
461
+ };
462
+ readonly display: {
463
+ readonly type: "string";
464
+ readonly enum: readonly ["fullscreen", "standalone", "minimal-ui", "browser"];
465
+ };
466
+ readonly start_url: {
467
+ readonly type: "string";
468
+ };
469
+ readonly scope: {
470
+ readonly type: "string";
471
+ };
472
+ readonly icons: {
473
+ readonly type: "array";
474
+ readonly description: "Icons appended to the built-in set and de-duplicated by (src, sizes, purpose).";
475
+ readonly items: {
476
+ readonly type: "object";
477
+ readonly additionalProperties: false;
478
+ readonly required: readonly ["src"];
479
+ readonly properties: {
480
+ readonly src: {
481
+ readonly type: "string";
482
+ };
483
+ readonly sizes: {
484
+ readonly type: "string";
485
+ };
486
+ readonly type: {
487
+ readonly type: "string";
488
+ };
489
+ readonly purpose: {
490
+ readonly type: "string";
491
+ };
492
+ };
493
+ };
494
+ };
495
+ readonly file_handlers: {
496
+ readonly type: "array";
497
+ readonly description: "File associations appended after Connect's built-in .phd/.phdm handler and de-duplicated on the whole entry. Entries only declare accepted types; there is no action field, because opening the files requires Connect's own runtime handling, so every handler opens at the app root.";
498
+ readonly items: {
499
+ readonly type: "object";
500
+ readonly additionalProperties: false;
501
+ readonly required: readonly ["accept"];
502
+ readonly properties: {
503
+ readonly accept: {
504
+ readonly type: "object";
505
+ readonly description: "MIME type \u2192 file extensions. Each extension must start with '.'; browsers ignore entries without it.";
506
+ readonly additionalProperties: {
507
+ readonly type: "array";
508
+ readonly items: {
509
+ readonly type: "string";
510
+ readonly pattern: "^\\.";
511
+ };
512
+ };
513
+ };
514
+ readonly icons: {
515
+ readonly type: "array";
516
+ readonly description: "OS-level file-type icons.";
517
+ readonly items: {
518
+ readonly type: "object";
519
+ readonly additionalProperties: false;
520
+ readonly required: readonly ["src"];
521
+ readonly properties: {
522
+ readonly src: {
523
+ readonly type: "string";
524
+ };
525
+ readonly sizes: {
526
+ readonly type: "string";
527
+ };
528
+ readonly type: {
529
+ readonly type: "string";
530
+ };
531
+ readonly purpose: {
532
+ readonly type: "string";
533
+ };
534
+ };
535
+ };
536
+ };
537
+ readonly launch_type: {
538
+ readonly type: "string";
539
+ readonly enum: readonly ["single-client", "multiple-clients"];
540
+ };
541
+ };
542
+ };
543
+ };
544
+ readonly launch_handler: {
545
+ readonly type: "object";
546
+ readonly additionalProperties: false;
547
+ readonly required: readonly ["client_mode"];
548
+ readonly description: "How the OS launches the app for handled files/links. Connect defaults to focus-existing.";
549
+ readonly properties: {
550
+ readonly client_mode: {
551
+ readonly type: "string";
552
+ readonly enum: readonly ["auto", "focus-existing", "navigate-existing", "navigate-new"];
553
+ };
554
+ };
555
+ };
556
+ };
557
+ };
558
+ readonly globPatterns: {
559
+ readonly type: "array";
560
+ readonly items: {
561
+ readonly type: "string";
562
+ };
563
+ readonly description: "Extra Workbox precache globs, unioned with the built-ins.";
564
+ };
565
+ readonly globIgnores: {
566
+ readonly type: "array";
567
+ readonly items: {
568
+ readonly type: "string";
569
+ };
570
+ readonly description: "Extra precache ignore globs, unioned with the built-ins.";
571
+ };
572
+ readonly maximumFileSizeToCacheInBytes: {
573
+ readonly type: "number";
574
+ readonly description: "Raise the precache file-size ceiling. The max across all contributors wins, so no contributor can shrink another's limit.";
575
+ };
576
+ readonly runtimeCaching: {
577
+ readonly type: "array";
578
+ readonly description: "Runtime-caching rules appended after the built-in rules. Workbox is first-match-wins, so these cannot override a built-in rule matching the same URL.";
579
+ readonly items: {
580
+ readonly type: "object";
581
+ readonly additionalProperties: false;
582
+ readonly required: readonly ["urlPattern", "handler"];
583
+ readonly properties: {
584
+ readonly urlPattern: {
585
+ readonly description: "URL match. A string is matched verbatim by Workbox; { source, flags } is rebuilt into a RegExp at build time.";
586
+ readonly oneOf: readonly [{
587
+ readonly type: "string";
588
+ }, {
589
+ readonly type: "object";
590
+ readonly additionalProperties: false;
591
+ readonly required: readonly ["source"];
592
+ readonly properties: {
593
+ readonly source: {
594
+ readonly type: "string";
595
+ readonly description: "RegExp source.";
596
+ };
597
+ readonly flags: {
598
+ readonly type: "string";
599
+ readonly description: "RegExp flags (e.g. 'i').";
600
+ };
601
+ };
602
+ }];
603
+ };
604
+ readonly handler: {
605
+ readonly type: "string";
606
+ readonly enum: readonly ["CacheFirst", "CacheOnly", "NetworkFirst", "NetworkOnly", "StaleWhileRevalidate"];
607
+ };
608
+ readonly method: {
609
+ readonly type: "string";
610
+ readonly enum: readonly ["GET", "POST", "PUT", "DELETE", "HEAD", "PATCH"];
611
+ };
612
+ readonly options: {
613
+ readonly type: "object";
614
+ readonly additionalProperties: false;
615
+ readonly properties: {
616
+ readonly cacheName: {
617
+ readonly type: "string";
618
+ };
619
+ readonly networkTimeoutSeconds: {
620
+ readonly type: "number";
621
+ readonly description: "Seconds a NetworkFirst rule waits for the network before falling back to the cache.";
622
+ };
623
+ readonly expiration: {
624
+ readonly type: "object";
625
+ readonly additionalProperties: false;
626
+ readonly properties: {
627
+ readonly maxEntries: {
628
+ readonly type: "number";
629
+ };
630
+ readonly maxAgeSeconds: {
631
+ readonly type: "number";
632
+ };
633
+ };
634
+ };
635
+ readonly cacheableResponse: {
636
+ readonly type: "object";
637
+ readonly additionalProperties: false;
638
+ readonly properties: {
639
+ readonly statuses: {
640
+ readonly type: "array";
641
+ readonly items: {
642
+ readonly type: "number";
643
+ };
644
+ };
645
+ readonly headers: {
646
+ readonly type: "object";
647
+ readonly additionalProperties: {
648
+ readonly type: "string";
649
+ };
650
+ };
651
+ };
652
+ };
653
+ };
654
+ };
655
+ };
656
+ };
657
+ };
658
+ readonly navigateFallbackDenylist: {
659
+ readonly type: "array";
660
+ readonly description: "Extra SPA navigate-fallback denylist patterns, unioned with the built-ins.";
661
+ readonly items: {
662
+ readonly description: "URL match. A string is matched verbatim by Workbox; { source, flags } is rebuilt into a RegExp at build time.";
663
+ readonly oneOf: readonly [{
664
+ readonly type: "string";
665
+ }, {
666
+ readonly type: "object";
667
+ readonly additionalProperties: false;
668
+ readonly required: readonly ["source"];
669
+ readonly properties: {
670
+ readonly source: {
671
+ readonly type: "string";
672
+ readonly description: "RegExp source.";
673
+ };
674
+ readonly flags: {
675
+ readonly type: "string";
676
+ readonly description: "RegExp flags (e.g. 'i').";
677
+ };
678
+ };
679
+ }];
680
+ };
681
+ };
682
+ };
683
+ };
437
684
  };
438
685
  };
439
686
  };
@@ -559,6 +806,7 @@ declare function connectDynamicBasePlugin(options?: {
559
806
  forWorker?: boolean;
560
807
  workerStripPrefix?: string;
561
808
  }): Plugin;
809
+ declare function escapeForRegExp(s: string): string;
562
810
  //#endregion
563
811
  //#region connect-utils/vite-plugins/ph-config.d.ts
564
812
  type PhConfigPluginOptions = {
@@ -595,5 +843,5 @@ declare const THEME_BOOT_MARKER = "data-ph-theme-boot";
595
843
  */
596
844
  declare function connectThemeBootPlugin(): Plugin;
597
845
  //#endregion
598
- export { ConnectBuildOptions, ConnectCommonOptions, ConnectPreviewOptions, ConnectStudioOptions, DEFAULT_CONNECT_OUTDIR, DEFAULT_VENDOR_INCLUDE, DYNAMIC_BASE_PLACEHOLDER, EXTERNAL_PACKAGES_IMPORT, IConnectOptions, IMPORT_SCRIPT_FILE, LOCAL_PACKAGE_ID, PH_DIR_NAME, PhConfigPluginOptions, PrebuiltVendor, RUNTIME_CONFIG_SCHEMA_ID, RUNTIME_CONFIG_SCHEMA_URL, THEME_BOOT_MARKER, VENDOR_EXTERNAL, VENDOR_URL_PREFIX, VendorPrebuildOptions, ViteDevOptions, appendToHtmlHead, backupIndexHtml, connectDynamicBasePlugin, connectThemeBootPlugin, copyConnect, ensureNodeVersion, getConnectBaseViteConfig, getConnectHtmlTags, makeImportScriptFromPackages, phConfigPlugin, prebuildConnectVendor, prependToHtmlHead, readJsonFile, removeBase64EnvValues, resolveConnectBundle, resolveConnectPackageJson, resolveConnectPublicDir, resolvePackage, resolveViteConfigPath, runShellScriptPlugin, runTsc, runtimeConfigSchema, stripVersionFromPackage };
846
+ export { ConnectBuildOptions, ConnectCommonOptions, ConnectPreviewOptions, ConnectStudioOptions, DEFAULT_CONNECT_OUTDIR, DEFAULT_VENDOR_INCLUDE, DYNAMIC_BASE_PLACEHOLDER, EXTERNAL_PACKAGES_IMPORT, IConnectOptions, IMPORT_SCRIPT_FILE, LOCAL_PACKAGE_ID, PH_DIR_NAME, PhConfigPluginOptions, PrebuiltVendor, RUNTIME_CONFIG_SCHEMA_ID, RUNTIME_CONFIG_SCHEMA_URL, THEME_BOOT_MARKER, VENDOR_EXTERNAL, VENDOR_URL_PREFIX, VendorPrebuildOptions, ViteDevOptions, appendToHtmlHead, backupIndexHtml, connectDynamicBasePlugin, connectThemeBootPlugin, copyConnect, ensureNodeVersion, escapeForRegExp, getConnectBaseViteConfig, getConnectHtmlTags, makeImportScriptFromPackages, phConfigPlugin, prebuildConnectVendor, prependToHtmlHead, readJsonFile, removeBase64EnvValues, resolveConnectBundle, resolveConnectPackageJson, resolveConnectPublicDir, resolvePackage, resolveViteConfigPath, runShellScriptPlugin, runTsc, runtimeConfigSchema, stripVersionFromPackage };
599
847
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../connect-utils/constants.ts","../connect-utils/externalize-vendor.ts","../connect-utils/types.ts","../connect-utils/helpers.ts","../connect-utils/runtime-config-schema.ts","../connect-utils/vite-config.ts","../connect-utils/vite-plugins/dynamic-base.ts","../connect-utils/vite-plugins/ph-config.ts","../connect-utils/vite-plugins/theme-boot.ts"],"mappings":";;;;;cAAa,wBAAA;AAAA,cACA,kBAAA;AAAA,cACA,gBAAA;AAAA,cACA,WAAA;;;UC6CI,qBAAA;;EAEf,OAAA;;EAEA,OAAA;EDpDW;ECsDX,QAAA;;EAEA,SAAA;EDxDmC;EC0DnC,QAAA;IAAa,OAAA;EAAA;AAAA;;ADxDf;;;;cCgEa,sBAAA;AD/Db;;;;;AAAA,cC6Ea,eAAA;AAAA,UAYI,cAAA;EACf,SAAA;EA7Ce;EA+Cf,OAAA,EAAS,MAAA;AAAA;;cAIE,iBAAA;;;;;;iBAWS,qBAAA,CACpB,OAAA,EAAS,qBAAA,GACR,OAAA,CAAQ,cAAA;;;KC5GC,eAAA;EACV,IAAA;EACA,OAAA;EACA,MAAA;EACA,gBAAA,GAAmB,gBAAA;EACnB,YAAA;EFTmC;AACrC;;;;;AACA;;;;;EEmBE,kBAAA,GAAqB,sBAAA;EFlBC;;;;;EEwBtB,qBAAA;EAGA,WAAA;EAIA,OAAA;AAAA;AAAA,KAGU,oBAAA;EAEV,IAAA;EAEA,IAAA;EAEA,UAAA;EAEA,WAAA;EAEA,cAAA;EAEA,mBAAA;EAEA,gBAAA;EAEA,sBAAA;AAAA;AAAA,KAGU,cAAA,GAAiB,IAAA,CAC3B,mBAAA;EAEI,KAAA;AAAA;AAAA,KAEM,oBAAA,GAAuB,oBAAA;EACjC,gBAAA,GAAmB,cAAA;EACnB,SAAA;EACA,gBAAA;AAAA;AAAA,KAGU,mBAAA,GAAsB,oBAAA;EAEhC,MAAA;AAAA;AAAA,KAGU,qBAAA,GAAwB,oBAAA,GAClC,IAAA,CAAK,cAAA;EAEH,MAAA;EACA,SAAA;EACA,gBAAA;AAAA;;;cClES,sBAAA;AAAA,iBAEG,qBAAA,CACd,OAAA,EAAS,IAAA,CAAK,oBAAA;AAAA,iBAMA,cAAA,CAAe,WAAA,UAAqB,IAAA;AAAA,iBAMpC,yBAAA,CAA0B,IAAA,YAAoB,IAAA;;;;iBAiB9C,oBAAA,CAAqB,IAAA;AAAA,iBASrB,uBAAA,CAAwB,IAAA;;;;iBAWxB,WAAA,CAAY,UAAA,UAAoB,UAAA;;;;;AH5DhD;iBG6EgB,eAAA,CAAgB,OAAA,UAAiB,OAAA;AAAA,iBAWjC,qBAAA,CAAsB,OAAA;AAAA,iBAmCtB,YAAA,CAAa,QAAA,WAAmB,gBAAA;;;;iBAchC,4BAAA,CAA6B,IAAA;EAC3C,QAAA;EACA,YAAA;EACA,WAAA;EACA,YAAA;AAAA;AAAA,iBAsDc,iBAAA,CAAkB,UAAA;AAAA,iBAclB,oBAAA,CACd,UAAA,UACA,WAAA,WACC,MAAA;;;;iBAwCmB,gBAAA,CAAiB,UAAA,UAAoB,QAAA,WAAgB,OAAA;;AF7L3E;;iBEyMsB,iBAAA,CAAkB,UAAA,UAAoB,QAAA,WAAgB,OAAA;AAAA,iBAS5D,MAAA,CAAO,MAAA;AAAA,iBAMP,uBAAA,CAAwB,WAAA;;;cC5Q3B,wBAAA;AAAA,cAOA,yBAAA;AAAA,cAGA,mBAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCUG,kBAAA,CACd,OAAA;EACE,WAAA;EACA,QAAA,GAAW,iBAAA;AAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiJC,wBAAA,CAAyB,OAAA,EAAS,eAAA,GAAe,YAAA;;;;;;;ALtLjE;;;;;cMYa,wBAAA;;;;;ANVb;;;;;AACA;;;;;;;;AC6CA;;;;;;;;;;;iBK8BgB,wBAAA,CACd,OAAA;EAAW,SAAA;EAAqB,iBAAA;AAAA,IAC/B,MAAA;;;KCpES,qBAAA;EACV,QAAA,EAAU,iBAAA;EACV,WAAA;EACA,OAAA,GAAU,sBAAA;;;;APdZ;;;EOqBE,kBAAA;EPrB6B;AAC/B;;;;EO0BE,kBAAA,GAAqB,sBAAA;AAAA;AAAA,iBAsBP,cAAA,CAAe,OAAA,EAAS,qBAAA,GAAwB,MAAA;;;;;;;APlDhE;cQOa,iBAAA;;;;ARNb;;iBQ6BgB,sBAAA,CAAA,GAA0B,MAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../connect-utils/constants.ts","../connect-utils/externalize-vendor.ts","../connect-utils/types.ts","../connect-utils/helpers.ts","../connect-utils/runtime-config-schema.ts","../connect-utils/vite-config.ts","../connect-utils/vite-plugins/dynamic-base.ts","../connect-utils/vite-plugins/ph-config.ts","../connect-utils/vite-plugins/theme-boot.ts"],"mappings":"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"}