@storm-software/cloudflare-tools 0.49.0 → 0.49.1

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.
@@ -3440,6 +3440,582 @@ var _version = require('nx/src/command-line/release/version');
3440
3440
  var _utils = require('nx/src/tasks-runner/utils');
3441
3441
  var _semver3 = require('semver');
3442
3442
 
3443
+ // ../workspace-tools/src/base/base-executor.untyped.ts
3444
+ var _untyped = require('untyped');
3445
+ var base_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3446
+ $schema: {
3447
+ id: "baseExecutor",
3448
+ title: "Base Executor",
3449
+ description: "A base type definition for an executor schema"
3450
+ },
3451
+ outputPath: {
3452
+ $schema: {
3453
+ title: "Output Path",
3454
+ type: "string",
3455
+ format: "path",
3456
+ description: "The output path for the build"
3457
+ },
3458
+ $default: "dist/{projectRoot}"
3459
+ }
3460
+ });
3461
+
3462
+ // ../workspace-tools/src/base/base-generator.untyped.ts
3463
+
3464
+ var base_generator_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3465
+ $schema: {
3466
+ id: "BaseGeneratorSchema",
3467
+ title: "Base Generator",
3468
+ description: "A type definition for the base Generator schema"
3469
+ },
3470
+ directory: {
3471
+ $schema: {
3472
+ title: "Directory",
3473
+ type: "string",
3474
+ description: "The directory to create the library in"
3475
+ }
3476
+ }
3477
+ });
3478
+
3479
+ // ../workspace-tools/src/base/cargo-base-executor.untyped.ts
3480
+
3481
+ var cargo_base_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3482
+ ...base_executor_untyped_default,
3483
+ $schema: {
3484
+ id: "cargoBaseExecutor",
3485
+ title: "Cargo Base Executor",
3486
+ description: "A base type definition for a Cargo/rust related executor schema"
3487
+ },
3488
+ package: {
3489
+ $schema: {
3490
+ title: "Cargo.toml Path",
3491
+ type: "string",
3492
+ format: "path",
3493
+ description: "The path to the Cargo.toml file"
3494
+ },
3495
+ $default: "{projectRoot}/Cargo.toml"
3496
+ },
3497
+ toolchain: {
3498
+ $schema: {
3499
+ title: "Toolchain",
3500
+ description: "The type of toolchain to use for the build",
3501
+ enum: [
3502
+ "stable",
3503
+ "beta",
3504
+ "nightly"
3505
+ ],
3506
+ default: "stable"
3507
+ },
3508
+ $default: "stable"
3509
+ },
3510
+ target: {
3511
+ $schema: {
3512
+ title: "Target",
3513
+ type: "string",
3514
+ description: "The target to build"
3515
+ }
3516
+ },
3517
+ allTargets: {
3518
+ $schema: {
3519
+ title: "All Targets",
3520
+ type: "boolean",
3521
+ description: "Build all targets"
3522
+ }
3523
+ },
3524
+ profile: {
3525
+ $schema: {
3526
+ title: "Profile",
3527
+ type: "string",
3528
+ description: "The profile to build"
3529
+ }
3530
+ },
3531
+ release: {
3532
+ $schema: {
3533
+ title: "Release",
3534
+ type: "boolean",
3535
+ description: "Build in release mode"
3536
+ }
3537
+ },
3538
+ features: {
3539
+ $schema: {
3540
+ title: "Features",
3541
+ type: "string",
3542
+ description: "The features to build",
3543
+ oneOf: [
3544
+ {
3545
+ type: "string"
3546
+ },
3547
+ {
3548
+ type: "array",
3549
+ items: {
3550
+ type: "string"
3551
+ }
3552
+ }
3553
+ ]
3554
+ }
3555
+ },
3556
+ allFeatures: {
3557
+ $schema: {
3558
+ title: "All Features",
3559
+ type: "boolean",
3560
+ description: "Build all features"
3561
+ }
3562
+ }
3563
+ });
3564
+
3565
+ // ../workspace-tools/src/base/typescript-build-executor.untyped.ts
3566
+
3567
+ var typescript_build_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3568
+ ...base_executor_untyped_default,
3569
+ $schema: {
3570
+ id: "TypeScriptBuildExecutorSchema",
3571
+ title: "TypeScript Build Executor",
3572
+ description: "A type definition for the base TypeScript build executor schema",
3573
+ required: [
3574
+ "entry",
3575
+ "tsconfig"
3576
+ ]
3577
+ },
3578
+ entry: {
3579
+ $schema: {
3580
+ title: "Entry File(s)",
3581
+ format: "path",
3582
+ type: "array",
3583
+ description: "The entry file or files to build",
3584
+ items: {
3585
+ type: "string"
3586
+ }
3587
+ },
3588
+ $default: [
3589
+ "{sourceRoot}/index.ts"
3590
+ ]
3591
+ },
3592
+ tsconfig: {
3593
+ $schema: {
3594
+ title: "TSConfig Path",
3595
+ type: "string",
3596
+ format: "path",
3597
+ description: "The path to the tsconfig file"
3598
+ },
3599
+ $default: "{projectRoot}/tsconfig.json"
3600
+ },
3601
+ bundle: {
3602
+ $schema: {
3603
+ title: "Bundle",
3604
+ type: "boolean",
3605
+ description: "Bundle the output"
3606
+ },
3607
+ $default: false
3608
+ },
3609
+ minify: {
3610
+ $schema: {
3611
+ title: "Minify",
3612
+ type: "boolean",
3613
+ description: "Minify the output"
3614
+ },
3615
+ $default: false
3616
+ },
3617
+ debug: {
3618
+ $schema: {
3619
+ title: "Debug",
3620
+ type: "boolean",
3621
+ description: "Debug the output"
3622
+ },
3623
+ $default: false
3624
+ },
3625
+ sourcemap: {
3626
+ $schema: {
3627
+ title: "Sourcemap",
3628
+ type: "boolean",
3629
+ description: "Generate a sourcemap"
3630
+ },
3631
+ $default: false
3632
+ },
3633
+ silent: {
3634
+ $schema: {
3635
+ title: "Silent",
3636
+ type: "boolean",
3637
+ description: "Should the build run silently - only report errors back to the user"
3638
+ },
3639
+ $default: false
3640
+ },
3641
+ target: {
3642
+ $schema: {
3643
+ title: "Target",
3644
+ type: "string",
3645
+ description: "The target to build",
3646
+ enum: [
3647
+ "es3",
3648
+ "es5",
3649
+ "es6",
3650
+ "es2015",
3651
+ "es2016",
3652
+ "es2017",
3653
+ "es2018",
3654
+ "es2019",
3655
+ "es2020",
3656
+ "es2021",
3657
+ "es2022",
3658
+ "es2023",
3659
+ "es2024",
3660
+ "esnext",
3661
+ "node12",
3662
+ "node14",
3663
+ "node16",
3664
+ "node18",
3665
+ "node20",
3666
+ "node22",
3667
+ "browser",
3668
+ "chrome58",
3669
+ "chrome59",
3670
+ "chrome60"
3671
+ ]
3672
+ },
3673
+ $default: "esnext",
3674
+ $resolve: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (val = "esnext") => val.toLowerCase(), "$resolve")
3675
+ },
3676
+ format: {
3677
+ $schema: {
3678
+ title: "Format",
3679
+ type: "array",
3680
+ description: "The format to build",
3681
+ items: {
3682
+ type: "string",
3683
+ enum: [
3684
+ "cjs",
3685
+ "esm",
3686
+ "iife"
3687
+ ]
3688
+ }
3689
+ },
3690
+ $resolve: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (val = [
3691
+ "cjs",
3692
+ "esm"
3693
+ ]) => [].concat(val), "$resolve")
3694
+ },
3695
+ platform: {
3696
+ $schema: {
3697
+ title: "Platform",
3698
+ type: "string",
3699
+ description: "The platform to build",
3700
+ enum: [
3701
+ "neutral",
3702
+ "node",
3703
+ "browser"
3704
+ ]
3705
+ },
3706
+ $default: "neutral"
3707
+ },
3708
+ external: {
3709
+ $schema: {
3710
+ title: "External",
3711
+ type: "array",
3712
+ description: "The external dependencies"
3713
+ },
3714
+ $resolve: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (val = []) => [].concat(val), "$resolve")
3715
+ },
3716
+ define: {
3717
+ $schema: {
3718
+ title: "Define",
3719
+ type: "object",
3720
+ tsType: "Record<string, string>",
3721
+ description: "The define values"
3722
+ },
3723
+ $resolve: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (val = {}) => val, "$resolve"),
3724
+ $default: {}
3725
+ },
3726
+ env: {
3727
+ $schema: {
3728
+ title: "Environment Variables",
3729
+ type: "object",
3730
+ tsType: "Record<string, string>",
3731
+ description: "The environment variable values"
3732
+ },
3733
+ $resolve: /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (val = {}) => val, "$resolve"),
3734
+ $default: {}
3735
+ }
3736
+ });
3737
+
3738
+ // ../workspace-tools/src/base/typescript-library-generator.untyped.ts
3739
+
3740
+ var typescript_library_generator_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3741
+ ...base_generator_untyped_default,
3742
+ $schema: {
3743
+ id: "TypeScriptLibraryGeneratorSchema",
3744
+ title: "TypeScript Library Generator",
3745
+ description: "A type definition for the base TypeScript Library Generator schema",
3746
+ required: [
3747
+ "directory",
3748
+ "name"
3749
+ ]
3750
+ },
3751
+ name: {
3752
+ $schema: {
3753
+ title: "Name",
3754
+ type: "string",
3755
+ description: "The name of the library"
3756
+ }
3757
+ },
3758
+ description: {
3759
+ $schema: {
3760
+ title: "Description",
3761
+ type: "string",
3762
+ description: "The description of the library"
3763
+ }
3764
+ },
3765
+ buildExecutor: {
3766
+ $schema: {
3767
+ title: "Build Executor",
3768
+ type: "string",
3769
+ description: "The executor to use for building the library"
3770
+ },
3771
+ $default: "@storm-software/workspace-tools:unbuild"
3772
+ },
3773
+ platform: {
3774
+ $schema: {
3775
+ title: "Platform",
3776
+ type: "string",
3777
+ description: "The platform to target with the library",
3778
+ enum: [
3779
+ "neutral",
3780
+ "node",
3781
+ "browser"
3782
+ ]
3783
+ },
3784
+ $default: "neutral"
3785
+ },
3786
+ devDependencies: {
3787
+ $schema: {
3788
+ title: "Dev Dependencies",
3789
+ type: "object",
3790
+ description: "The dev dependencies to install"
3791
+ }
3792
+ },
3793
+ dependencies: {
3794
+ $schema: {
3795
+ title: "Dependencies",
3796
+ type: "object",
3797
+ description: "The dependencies to install"
3798
+ }
3799
+ },
3800
+ peerDependencies: {
3801
+ $schema: {
3802
+ title: "Peer Dependencies",
3803
+ type: "object",
3804
+ description: "The peer dependencies to install"
3805
+ }
3806
+ },
3807
+ peerDependenciesMeta: {
3808
+ $schema: {
3809
+ title: "Peer Dependencies Meta",
3810
+ type: "object",
3811
+ description: "The peer dependencies meta"
3812
+ }
3813
+ },
3814
+ tags: {
3815
+ $schema: {
3816
+ title: "Tags",
3817
+ type: "string",
3818
+ description: "The tags for the library"
3819
+ }
3820
+ },
3821
+ tsconfigOptions: {
3822
+ $schema: {
3823
+ title: "TypeScript Config (tsconfig.json) Options",
3824
+ type: "object",
3825
+ description: "The TypeScript configuration options"
3826
+ }
3827
+ },
3828
+ skipFormat: {
3829
+ $schema: {
3830
+ title: "Skip Format",
3831
+ type: "boolean",
3832
+ description: "Skip formatting"
3833
+ }
3834
+ },
3835
+ skipTsConfig: {
3836
+ $schema: {
3837
+ title: "Skip TsConfig",
3838
+ type: "boolean",
3839
+ description: "Skip TypeScript configuration"
3840
+ }
3841
+ },
3842
+ skipPackageJson: {
3843
+ $schema: {
3844
+ title: "Skip Package Json",
3845
+ type: "boolean",
3846
+ description: "Skip package.json"
3847
+ }
3848
+ },
3849
+ includeBabelRc: {
3850
+ $schema: {
3851
+ title: "Include Babel Rc",
3852
+ type: "boolean",
3853
+ description: "Include Babel configuration"
3854
+ }
3855
+ },
3856
+ unitTestRunner: {
3857
+ $schema: {
3858
+ title: "Unit Test Runner",
3859
+ type: "string",
3860
+ enum: [
3861
+ "jest",
3862
+ "vitest",
3863
+ "none"
3864
+ ],
3865
+ description: "The unit test runner to use"
3866
+ }
3867
+ },
3868
+ linter: {
3869
+ $schema: {
3870
+ title: "Linter",
3871
+ type: "string",
3872
+ description: "The linter to use"
3873
+ }
3874
+ },
3875
+ testEnvironment: {
3876
+ $schema: {
3877
+ title: "Test Environment",
3878
+ type: "string",
3879
+ enum: [
3880
+ "jsdom",
3881
+ "node"
3882
+ ],
3883
+ description: "The test environment to use"
3884
+ }
3885
+ },
3886
+ importPath: {
3887
+ $schema: {
3888
+ title: "Import Path",
3889
+ type: "string",
3890
+ description: "The import path for the library"
3891
+ }
3892
+ },
3893
+ js: {
3894
+ $schema: {
3895
+ title: "JavaScript",
3896
+ type: "boolean",
3897
+ description: "Use JavaScript instead of TypeScript"
3898
+ }
3899
+ },
3900
+ pascalCaseFiles: {
3901
+ $schema: {
3902
+ title: "Pascal Case Files",
3903
+ type: "boolean",
3904
+ description: "Use PascalCase for file names"
3905
+ }
3906
+ },
3907
+ strict: {
3908
+ $schema: {
3909
+ title: "Strict",
3910
+ type: "boolean",
3911
+ description: "Enable strict mode"
3912
+ }
3913
+ },
3914
+ publishable: {
3915
+ $schema: {
3916
+ title: "Publishable",
3917
+ type: "boolean",
3918
+ description: "Make the library publishable"
3919
+ }
3920
+ },
3921
+ buildable: {
3922
+ $schema: {
3923
+ title: "Buildable",
3924
+ type: "boolean",
3925
+ description: "Make the library buildable"
3926
+ }
3927
+ },
3928
+ setParserOptionsProject: {
3929
+ $schema: {
3930
+ title: "Set Parser Options Project",
3931
+ type: "boolean",
3932
+ description: "Set parser options project"
3933
+ }
3934
+ },
3935
+ config: {
3936
+ $schema: {
3937
+ title: "Config",
3938
+ type: "string",
3939
+ enum: [
3940
+ "workspace",
3941
+ "project",
3942
+ "npm-scripts"
3943
+ ],
3944
+ description: "The configuration type"
3945
+ }
3946
+ },
3947
+ compiler: {
3948
+ $schema: {
3949
+ title: "Compiler",
3950
+ type: "string",
3951
+ description: "The compiler to use"
3952
+ }
3953
+ },
3954
+ bundler: {
3955
+ $schema: {
3956
+ title: "Bundler",
3957
+ type: "string",
3958
+ description: "The bundler to use"
3959
+ }
3960
+ },
3961
+ skipTypeCheck: {
3962
+ $schema: {
3963
+ title: "Skip Type Check",
3964
+ type: "boolean",
3965
+ description: "Skip type checking"
3966
+ }
3967
+ },
3968
+ minimal: {
3969
+ $schema: {
3970
+ title: "Minimal",
3971
+ type: "boolean",
3972
+ description: "Create a minimal library"
3973
+ }
3974
+ },
3975
+ rootProject: {
3976
+ $schema: {
3977
+ title: "Root Project",
3978
+ type: "boolean",
3979
+ description: "Create a root project"
3980
+ }
3981
+ },
3982
+ simpleName: {
3983
+ $schema: {
3984
+ title: "Simple Name",
3985
+ type: "boolean",
3986
+ description: "Use a simple name for the library"
3987
+ }
3988
+ },
3989
+ addPlugin: {
3990
+ $schema: {
3991
+ title: "Add Plugin",
3992
+ type: "boolean",
3993
+ description: "Add a plugin to the library"
3994
+ }
3995
+ },
3996
+ useProjectJson: {
3997
+ $schema: {
3998
+ title: "Use Project Json",
3999
+ type: "boolean",
4000
+ description: "Use project.json"
4001
+ }
4002
+ },
4003
+ skipWorkspacesWarning: {
4004
+ $schema: {
4005
+ title: "Skip Workspaces Warning",
4006
+ type: "boolean",
4007
+ description: "Skip workspaces warning"
4008
+ }
4009
+ },
4010
+ useTscExecutor: {
4011
+ $schema: {
4012
+ title: "Use Tsc Executor",
4013
+ type: "boolean",
4014
+ description: "Use TSC executor"
4015
+ }
4016
+ }
4017
+ });
4018
+
3443
4019
  // ../workspace-tools/src/utils/get-project-configurations.ts
3444
4020
  var _retrieveworkspacefiles = require('nx/src/project-graph/utils/retrieve-workspace-files');
3445
4021
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  generator_default
3
- } from "./chunk-MTM5OTKD.mjs";
3
+ } from "./chunk-CR22PACK.mjs";
4
4
  import {
5
5
  loadStormConfig
6
6
  } from "./chunk-OARYMVO7.mjs";
package/dist/executors.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";require('./chunk-XO66D74Z.js');
2
- require('./chunk-R7AIVBS7.js');
3
- require('./chunk-Z46UO4N7.js');
4
2
  require('./chunk-NKCR3FSU.js');
5
3
  require('./chunk-JCB2DTP6.js');
4
+ require('./chunk-R7AIVBS7.js');
5
+ require('./chunk-WGOT27OY.js');
6
6
  require('./chunk-VTHBMY4B.js');
7
7
  require('./chunk-YE4FHRXJ.js');
8
8
  require('./chunk-RCE3CC76.js');
@@ -1,8 +1,8 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
- import "./chunk-QEWY5YJA.mjs";
3
- import "./chunk-OJNZ4PXQ.mjs";
4
2
  import "./chunk-VPT6GF3S.mjs";
5
3
  import "./chunk-VYOULWAK.mjs";
4
+ import "./chunk-QEWY5YJA.mjs";
5
+ import "./chunk-ITLKTOIK.mjs";
6
6
  import "./chunk-XU6MTFCV.mjs";
7
7
  import "./chunk-OARYMVO7.mjs";
8
8
  import "./chunk-NSLK6ZDO.mjs";
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkI4XNMV5Ujs = require('./chunk-I4XNMV5U.js');
5
+ var _chunkW5J5EWQNjs = require('./chunk-W5J5EWQN.js');
6
6
 
7
7
 
8
8
 
9
- var _chunkKKOHB7JHjs = require('./chunk-KKOHB7JH.js');
9
+ var _chunkNPJPHEFPjs = require('./chunk-NPJPHEFP.js');
10
10
  require('./chunk-YE4FHRXJ.js');
11
11
  require('./chunk-RCE3CC76.js');
12
12
  require('./chunk-J5SB6L2L.js');
@@ -15,4 +15,4 @@ require('./chunk-J5SB6L2L.js');
15
15
 
16
16
 
17
17
 
18
- exports.applicationGenerator = _chunkI4XNMV5Ujs.applicationGenerator; exports.applicationSchematic = _chunkI4XNMV5Ujs.applicationSchematic; exports.initGenerator = _chunkKKOHB7JHjs.initGenerator; exports.initSchematic = _chunkKKOHB7JHjs.initSchematic;
18
+ exports.applicationGenerator = _chunkW5J5EWQNjs.applicationGenerator; exports.applicationSchematic = _chunkW5J5EWQNjs.applicationSchematic; exports.initGenerator = _chunkNPJPHEFPjs.initGenerator; exports.initSchematic = _chunkNPJPHEFPjs.initSchematic;
@@ -2,11 +2,11 @@ import "./chunk-3J7KBHMJ.mjs";
2
2
  import {
3
3
  applicationGenerator,
4
4
  applicationSchematic
5
- } from "./chunk-A4ZIZ2JU.mjs";
5
+ } from "./chunk-ZY7TM2TA.mjs";
6
6
  import {
7
7
  initGenerator,
8
8
  initSchematic
9
- } from "./chunk-MTM5OTKD.mjs";
9
+ } from "./chunk-CR22PACK.mjs";
10
10
  import "./chunk-OARYMVO7.mjs";
11
11
  import "./chunk-NSLK6ZDO.mjs";
12
12
  import "./chunk-A7FFSBE6.mjs";
package/dist/index.js CHANGED
@@ -3,19 +3,19 @@ require('./chunk-DHBG5ASJ.js');
3
3
 
4
4
 
5
5
 
6
- var _chunkI4XNMV5Ujs = require('./chunk-I4XNMV5U.js');
6
+ var _chunkW5J5EWQNjs = require('./chunk-W5J5EWQN.js');
7
7
 
8
8
 
9
9
 
10
- var _chunkKKOHB7JHjs = require('./chunk-KKOHB7JH.js');
10
+ var _chunkNPJPHEFPjs = require('./chunk-NPJPHEFP.js');
11
11
  require('./chunk-CVGPWUNP.js');
12
- require('./chunk-R7AIVBS7.js');
13
- require('./chunk-Z46UO4N7.js');
14
12
  require('./chunk-NKCR3FSU.js');
15
13
 
16
14
 
17
15
 
18
16
  var _chunkJCB2DTP6js = require('./chunk-JCB2DTP6.js');
17
+ require('./chunk-R7AIVBS7.js');
18
+ require('./chunk-WGOT27OY.js');
19
19
 
20
20
 
21
21
 
@@ -148,4 +148,4 @@ _chunkJ5SB6L2Ljs.__name.call(void 0, createPackageJson, "createPackageJson");
148
148
 
149
149
 
150
150
 
151
- exports.applicationGenerator = _chunkI4XNMV5Ujs.applicationGenerator; exports.applicationSchematic = _chunkI4XNMV5Ujs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkJCB2DTP6js.getInternalDependencies; exports.initGenerator = _chunkKKOHB7JHjs.initGenerator; exports.initSchematic = _chunkKKOHB7JHjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkJCB2DTP6js.r2UploadFile;
151
+ exports.applicationGenerator = _chunkW5J5EWQNjs.applicationGenerator; exports.applicationSchematic = _chunkW5J5EWQNjs.applicationSchematic; exports.createNodes = createNodes; exports.getInternalDependencies = _chunkJCB2DTP6js.getInternalDependencies; exports.initGenerator = _chunkNPJPHEFPjs.initGenerator; exports.initSchematic = _chunkNPJPHEFPjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkJCB2DTP6js.r2UploadFile;
package/dist/index.mjs CHANGED
@@ -3,19 +3,19 @@ import "./chunk-3J7KBHMJ.mjs";
3
3
  import {
4
4
  applicationGenerator,
5
5
  applicationSchematic
6
- } from "./chunk-A4ZIZ2JU.mjs";
6
+ } from "./chunk-ZY7TM2TA.mjs";
7
7
  import {
8
8
  initGenerator,
9
9
  initSchematic
10
- } from "./chunk-MTM5OTKD.mjs";
10
+ } from "./chunk-CR22PACK.mjs";
11
11
  import "./chunk-7Z5PILRU.mjs";
12
- import "./chunk-QEWY5YJA.mjs";
13
- import "./chunk-OJNZ4PXQ.mjs";
14
12
  import "./chunk-VPT6GF3S.mjs";
15
13
  import {
16
14
  getInternalDependencies,
17
15
  r2UploadFile
18
16
  } from "./chunk-VYOULWAK.mjs";
17
+ import "./chunk-QEWY5YJA.mjs";
18
+ import "./chunk-ITLKTOIK.mjs";
19
19
  import {
20
20
  ProjectTagConstants,
21
21
  addProjectTag