lakutata 2.0.94 → 2.0.96
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/com/cacher.cjs +56 -44
- package/com/cacher.mjs +56 -44
- package/com/database.cjs +74 -74
- package/com/database.mjs +74 -74
- package/com/docker.cjs +85 -85
- package/com/docker.mjs +85 -85
- package/com/entrypoint.cjs +44 -44
- package/com/entrypoint.mjs +44 -44
- package/com/logger.cjs +51 -51
- package/com/logger.mjs +51 -51
- package/com/monitor.cjs +32 -32
- package/com/monitor.mjs +32 -32
- package/decorator/asst.cjs +5 -5
- package/decorator/asst.mjs +5 -5
- package/decorator/ctrl.cjs +22 -22
- package/decorator/ctrl.mjs +22 -22
- package/decorator/di.cjs +17 -17
- package/decorator/di.mjs +17 -17
- package/decorator/dto.cjs +17 -17
- package/decorator/dto.mjs +17 -17
- package/decorator/orm.cjs +47 -47
- package/decorator/orm.mjs +47 -47
- package/dtos.cjs +17 -17
- package/dtos.mjs +17 -17
- package/helper.cjs +32 -32
- package/helper.mjs +32 -32
- package/lakutata.cjs +110 -110
- package/lakutata.mjs +110 -110
- package/orm.cjs +47 -47
- package/orm.mjs +48 -48
- package/package.json +1 -1
- package/provider/database.cjs +73 -73
- package/provider/database.mjs +73 -73
- package/provider/passwordHash.cjs +31 -31
- package/provider/passwordHash.mjs +31 -31
- package/src/components/Database.cjs +74 -74
- package/src/components/Database.mjs +74 -74
- package/src/components/Logger.cjs +51 -51
- package/src/components/Logger.mjs +51 -51
- package/src/components/cacher/Cacher.cjs +60 -48
- package/src/components/cacher/Cacher.mjs +60 -48
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +26 -12
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +32 -18
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +30 -16
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +39 -25
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +42 -28
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +38 -24
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +29 -15
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +27 -13
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +40 -26
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +30 -16
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +27 -13
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +27 -13
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +30 -16
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +30 -16
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -4
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -4
- package/src/components/cacher/interfaces/CacherOptions.cjs +1 -1
- package/src/components/cacher/interfaces/CacherOptions.mjs +1 -1
- package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +4 -4
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -4
- package/src/components/cacher/options/FileCacheOptions.cjs +17 -17
- package/src/components/cacher/options/FileCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MongoCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MongoCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MysqlCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MysqlCacheOptions.mjs +17 -17
- package/src/components/cacher/options/PostgresCacheOptions.cjs +17 -17
- package/src/components/cacher/options/PostgresCacheOptions.mjs +17 -17
- package/src/components/cacher/options/RedisCacheOptions.cjs +17 -17
- package/src/components/cacher/options/RedisCacheOptions.mjs +17 -17
- package/src/components/cacher/options/SqliteCacheOptions.cjs +17 -17
- package/src/components/cacher/options/SqliteCacheOptions.mjs +17 -17
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +85 -85
- package/src/components/docker/ConnectionOptionsBuilder.mjs +85 -85
- package/src/components/docker/Docker.cjs +85 -85
- package/src/components/docker/Docker.mjs +85 -85
- package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -4
- package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -4
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -4
- package/src/components/docker/interfaces/IDockerConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.cjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.mjs +1 -1
- package/src/components/docker/lib/DockerContainer.cjs +72 -72
- package/src/components/docker/lib/DockerContainer.mjs +72 -72
- package/src/components/docker/lib/DockerContainerTTY.cjs +72 -72
- package/src/components/docker/lib/DockerContainerTTY.mjs +72 -72
- package/src/components/docker/lib/DockerImage.cjs +30 -30
- package/src/components/docker/lib/DockerImage.mjs +30 -30
- package/src/components/docker/lib/ParseEnvToRecord.cjs +1 -1
- package/src/components/docker/lib/ParseEnvToRecord.mjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.cjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.mjs +1 -1
- package/src/components/docker/options/DockerPruneOptions.cjs +17 -17
- package/src/components/docker/options/DockerPruneOptions.mjs +17 -17
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +17 -17
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerExecOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerExecOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerKillOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerKillOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerStopOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerStopOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageBuildOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageBuildOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageExportOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageExportOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageImportOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageImportOptions.mjs +17 -17
- package/src/components/docker/options/image/ImagePullOptions.cjs +17 -17
- package/src/components/docker/options/image/ImagePullOptions.mjs +17 -17
- package/src/components/docker/options/image/ImagePushOptions.cjs +17 -17
- package/src/components/docker/options/image/ImagePushOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageTagOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageTagOptions.mjs +17 -17
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +17 -17
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +17 -17
- package/src/components/docker/types/ContainerBind.cjs +1 -1
- package/src/components/docker/types/ContainerBind.mjs +1 -1
- package/src/components/docker/types/ContainerCapability.cjs +1 -1
- package/src/components/docker/types/ContainerCapability.mjs +1 -1
- package/src/components/docker/types/ContainerConfig.cjs +1 -1
- package/src/components/docker/types/ContainerConfig.mjs +1 -1
- package/src/components/docker/types/ContainerDevice.cjs +1 -1
- package/src/components/docker/types/ContainerDevice.mjs +1 -1
- package/src/components/docker/types/ContainerNetwork.cjs +1 -1
- package/src/components/docker/types/ContainerNetwork.mjs +1 -1
- package/src/components/docker/types/ContainerPort.cjs +1 -1
- package/src/components/docker/types/ContainerPort.mjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.cjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.mjs +1 -1
- package/src/components/docker/types/ContainerState.cjs +1 -1
- package/src/components/docker/types/ContainerState.mjs +1 -1
- package/src/components/docker/types/ContainerStats.cjs +1 -1
- package/src/components/docker/types/ContainerStats.mjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.cjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.mjs +1 -1
- package/src/components/docker/types/ImageConfig.cjs +1 -1
- package/src/components/docker/types/ImageConfig.mjs +1 -1
- package/src/components/docker/types/ImageExposePort.cjs +1 -1
- package/src/components/docker/types/ImageExposePort.mjs +1 -1
- package/src/components/docker/types/NetworkInfo.cjs +1 -1
- package/src/components/docker/types/NetworkInfo.mjs +1 -1
- package/src/components/entrypoint/Entrypoint.cjs +44 -44
- package/src/components/entrypoint/Entrypoint.mjs +44 -44
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -4
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -4
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -4
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -4
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -4
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -4
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -4
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -4
- package/src/components/entrypoint/lib/AccessControl.cjs +30 -30
- package/src/components/entrypoint/lib/AccessControl.mjs +30 -30
- package/src/components/entrypoint/lib/AccessControlRule.cjs +30 -30
- package/src/components/entrypoint/lib/AccessControlRule.mjs +30 -30
- package/src/components/entrypoint/lib/Controller.cjs +30 -30
- package/src/components/entrypoint/lib/Controller.mjs +30 -30
- package/src/components/monitor/AliveMonitor.cjs +31 -31
- package/src/components/monitor/AliveMonitor.mjs +31 -31
- package/src/components/monitor/CpuMonitor.cjs +32 -32
- package/src/components/monitor/CpuMonitor.mjs +32 -32
- package/src/components/monitor/EventLoopMonitor.cjs +31 -31
- package/src/components/monitor/EventLoopMonitor.mjs +31 -31
- package/src/components/monitor/HttpRequestMonitor.cjs +32 -32
- package/src/components/monitor/HttpRequestMonitor.mjs +32 -32
- package/src/components/monitor/MemoryMonitor.cjs +32 -32
- package/src/components/monitor/MemoryMonitor.mjs +32 -32
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
- package/src/constants/DIMetadataKey.cjs +2 -2
- package/src/constants/DIMetadataKey.mjs +2 -2
- package/src/constants/DTOMetadataKey.cjs +2 -2
- package/src/constants/DTOMetadataKey.mjs +2 -2
- package/src/decorators/asst/After.cjs +4 -4
- package/src/decorators/asst/After.mjs +4 -4
- package/src/decorators/asst/Before.cjs +4 -4
- package/src/decorators/asst/Before.mjs +4 -4
- package/src/decorators/ctrl/CLIAction.cjs +22 -22
- package/src/decorators/ctrl/CLIAction.mjs +22 -22
- package/src/decorators/ctrl/HTTPAction.cjs +22 -22
- package/src/decorators/ctrl/HTTPAction.mjs +22 -22
- package/src/decorators/ctrl/ServiceAction.cjs +22 -22
- package/src/decorators/ctrl/ServiceAction.mjs +22 -22
- package/src/decorators/ctrl/http/DELETE.cjs +22 -22
- package/src/decorators/ctrl/http/DELETE.mjs +22 -22
- package/src/decorators/ctrl/http/GET.cjs +22 -22
- package/src/decorators/ctrl/http/GET.mjs +22 -22
- package/src/decorators/ctrl/http/HEAD.cjs +22 -22
- package/src/decorators/ctrl/http/HEAD.mjs +22 -22
- package/src/decorators/ctrl/http/OPTIONS.cjs +22 -22
- package/src/decorators/ctrl/http/OPTIONS.mjs +22 -22
- package/src/decorators/ctrl/http/PATCH.cjs +22 -22
- package/src/decorators/ctrl/http/PATCH.mjs +22 -22
- package/src/decorators/ctrl/http/POST.cjs +22 -22
- package/src/decorators/ctrl/http/POST.mjs +22 -22
- package/src/decorators/ctrl/http/PUT.cjs +22 -22
- package/src/decorators/ctrl/http/PUT.mjs +22 -22
- package/src/decorators/di/Autoload.cjs +2 -2
- package/src/decorators/di/Autoload.mjs +2 -2
- package/src/decorators/di/Configurable.cjs +17 -17
- package/src/decorators/di/Configurable.mjs +17 -17
- package/src/decorators/di/Inject.cjs +17 -17
- package/src/decorators/di/Inject.mjs +17 -17
- package/src/decorators/di/Lifetime.cjs +5 -5
- package/src/decorators/di/Lifetime.mjs +5 -5
- package/src/decorators/dto/Accept.cjs +17 -17
- package/src/decorators/dto/Accept.mjs +17 -17
- package/src/decorators/dto/Expect.cjs +17 -17
- package/src/decorators/dto/Expect.mjs +17 -17
- package/src/decorators/dto/IndexSignature.cjs +17 -17
- package/src/decorators/dto/IndexSignature.mjs +17 -17
- package/src/decorators/dto/Return.cjs +17 -17
- package/src/decorators/dto/Return.mjs +17 -17
- package/src/decorators/orm/AfterInsert.cjs +46 -46
- package/src/decorators/orm/AfterInsert.mjs +46 -46
- package/src/decorators/orm/AfterLoad.cjs +46 -46
- package/src/decorators/orm/AfterLoad.mjs +46 -46
- package/src/decorators/orm/AfterRecover.cjs +46 -46
- package/src/decorators/orm/AfterRecover.mjs +46 -46
- package/src/decorators/orm/AfterRemove.cjs +46 -46
- package/src/decorators/orm/AfterRemove.mjs +46 -46
- package/src/decorators/orm/AfterSoftRemove.cjs +46 -46
- package/src/decorators/orm/AfterSoftRemove.mjs +46 -46
- package/src/decorators/orm/AfterUpdate.cjs +46 -46
- package/src/decorators/orm/AfterUpdate.mjs +46 -46
- package/src/decorators/orm/BeforeInsert.cjs +46 -46
- package/src/decorators/orm/BeforeInsert.mjs +46 -46
- package/src/decorators/orm/BeforeRecover.cjs +46 -46
- package/src/decorators/orm/BeforeRecover.mjs +46 -46
- package/src/decorators/orm/BeforeRemove.cjs +46 -46
- package/src/decorators/orm/BeforeRemove.mjs +46 -46
- package/src/decorators/orm/BeforeSoftRemove.cjs +46 -46
- package/src/decorators/orm/BeforeSoftRemove.mjs +46 -46
- package/src/decorators/orm/BeforeUpdate.cjs +46 -46
- package/src/decorators/orm/BeforeUpdate.mjs +46 -46
- package/src/decorators/orm/Check.cjs +46 -46
- package/src/decorators/orm/Check.mjs +46 -46
- package/src/decorators/orm/ChildEntity.cjs +46 -46
- package/src/decorators/orm/ChildEntity.mjs +46 -46
- package/src/decorators/orm/Column.cjs +46 -46
- package/src/decorators/orm/Column.mjs +46 -46
- package/src/decorators/orm/CreateDateColumn.cjs +46 -46
- package/src/decorators/orm/CreateDateColumn.mjs +46 -46
- package/src/decorators/orm/DeleteDateColumn.cjs +46 -46
- package/src/decorators/orm/DeleteDateColumn.mjs +46 -46
- package/src/decorators/orm/Entity.cjs +46 -46
- package/src/decorators/orm/Entity.mjs +46 -46
- package/src/decorators/orm/EventSubscriber.cjs +46 -46
- package/src/decorators/orm/EventSubscriber.mjs +46 -46
- package/src/decorators/orm/Exclusion.cjs +46 -46
- package/src/decorators/orm/Exclusion.mjs +46 -46
- package/src/decorators/orm/Generated.cjs +46 -46
- package/src/decorators/orm/Generated.mjs +46 -46
- package/src/decorators/orm/Index.cjs +46 -46
- package/src/decorators/orm/Index.mjs +46 -46
- package/src/decorators/orm/JoinColumn.cjs +46 -46
- package/src/decorators/orm/JoinColumn.mjs +46 -46
- package/src/decorators/orm/JoinTable.cjs +46 -46
- package/src/decorators/orm/JoinTable.mjs +46 -46
- package/src/decorators/orm/ManyToMany.cjs +46 -46
- package/src/decorators/orm/ManyToMany.mjs +46 -46
- package/src/decorators/orm/ManyToOne.cjs +46 -46
- package/src/decorators/orm/ManyToOne.mjs +46 -46
- package/src/decorators/orm/ObjectIdColumn.cjs +46 -46
- package/src/decorators/orm/ObjectIdColumn.mjs +46 -46
- package/src/decorators/orm/OneToMany.cjs +46 -46
- package/src/decorators/orm/OneToMany.mjs +46 -46
- package/src/decorators/orm/OneToOne.cjs +46 -46
- package/src/decorators/orm/OneToOne.mjs +46 -46
- package/src/decorators/orm/PrimaryColumn.cjs +46 -46
- package/src/decorators/orm/PrimaryColumn.mjs +46 -46
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +46 -46
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +46 -46
- package/src/decorators/orm/RelationId.cjs +46 -46
- package/src/decorators/orm/RelationId.mjs +46 -46
- package/src/decorators/orm/TableInheritance.cjs +46 -46
- package/src/decorators/orm/TableInheritance.mjs +46 -46
- package/src/decorators/orm/Tree.cjs +46 -46
- package/src/decorators/orm/Tree.mjs +46 -46
- package/src/decorators/orm/TreeChildren.cjs +46 -46
- package/src/decorators/orm/TreeChildren.mjs +46 -46
- package/src/decorators/orm/TreeLevelColumn.cjs +46 -46
- package/src/decorators/orm/TreeLevelColumn.mjs +46 -46
- package/src/decorators/orm/TreeParent.cjs +46 -46
- package/src/decorators/orm/TreeParent.mjs +46 -46
- package/src/decorators/orm/Unique.cjs +46 -46
- package/src/decorators/orm/Unique.mjs +46 -46
- package/src/decorators/orm/UpdateDateColumn.cjs +46 -46
- package/src/decorators/orm/UpdateDateColumn.mjs +46 -46
- package/src/decorators/orm/VersionColumn.cjs +46 -46
- package/src/decorators/orm/VersionColumn.mjs +46 -46
- package/src/decorators/orm/ViewColumn.cjs +46 -46
- package/src/decorators/orm/ViewColumn.mjs +46 -46
- package/src/decorators/orm/ViewEntity.cjs +46 -46
- package/src/decorators/orm/ViewEntity.mjs +46 -46
- package/src/decorators/orm/VirtualColumn.cjs +46 -46
- package/src/decorators/orm/VirtualColumn.mjs +46 -46
- package/src/dto/PaginationResultDTO.cjs +17 -17
- package/src/dto/PaginationResultDTO.mjs +17 -17
- package/src/dto/PaginationSearchDTO.cjs +17 -17
- package/src/dto/PaginationSearchDTO.mjs +17 -17
- package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -4
- package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -4
- package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -4
- package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -4
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -4
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -4
- package/src/exceptions/InvalidObjectTypeException.cjs +4 -4
- package/src/exceptions/InvalidObjectTypeException.mjs +4 -4
- package/src/exceptions/MethodNotFoundException.cjs +4 -4
- package/src/exceptions/MethodNotFoundException.mjs +4 -4
- package/src/exceptions/alias/AliasExistsException.cjs +4 -4
- package/src/exceptions/alias/AliasExistsException.mjs +4 -4
- package/src/exceptions/alias/AliasNotFoundException.cjs +4 -4
- package/src/exceptions/alias/AliasNotFoundException.mjs +4 -4
- package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -4
- package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -4
- package/src/exceptions/di/DependencyInjectionException.cjs +4 -4
- package/src/exceptions/di/DependencyInjectionException.mjs +4 -4
- package/src/exceptions/di/LifetimeLockedException.cjs +4 -4
- package/src/exceptions/di/LifetimeLockedException.mjs +4 -4
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -4
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -4
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -4
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -4
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -4
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -4
- package/src/exceptions/dto/InvalidValueException.cjs +4 -4
- package/src/exceptions/dto/InvalidValueException.mjs +4 -4
- package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
- package/src/interfaces/IConstructor.cjs +1 -1
- package/src/interfaces/IConstructor.mjs +1 -1
- package/src/interfaces/IPatRun.cjs +1 -1
- package/src/interfaces/IPatRun.mjs +1 -1
- package/src/lib/base/BaseObject.cjs +30 -30
- package/src/lib/base/BaseObject.mjs +30 -30
- package/src/lib/base/Context.cjs +17 -17
- package/src/lib/base/Context.mjs +17 -17
- package/src/lib/base/EventEmitter.cjs +2 -2
- package/src/lib/base/EventEmitter.mjs +2 -2
- package/src/lib/base/abstracts/Exception.cjs +4 -4
- package/src/lib/base/abstracts/Exception.mjs +4 -4
- package/src/lib/base/async-constructor/Append.cjs +1 -1
- package/src/lib/base/async-constructor/Append.mjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.cjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.mjs +1 -1
- package/src/lib/base/internal/ActionOptions.cjs +17 -17
- package/src/lib/base/internal/ActionOptions.mjs +17 -17
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +30 -30
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +30 -30
- package/src/lib/base/internal/BasicInfo.cjs +4 -4
- package/src/lib/base/internal/BasicInfo.mjs +4 -4
- package/src/lib/base/internal/CamelCase.cjs +1 -1
- package/src/lib/base/internal/CamelCase.mjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +2 -2
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.cjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.mjs +2 -2
- package/src/lib/base/internal/ControllerEntrypoint.cjs +9 -9
- package/src/lib/base/internal/ControllerEntrypoint.mjs +9 -9
- package/src/lib/base/internal/DataValidator.cjs +13 -13
- package/src/lib/base/internal/DataValidator.mjs +13 -13
- package/src/lib/base/internal/DatabaseSymbol.cjs +1 -1
- package/src/lib/base/internal/DatabaseSymbol.mjs +1 -1
- package/src/lib/base/internal/FlexibleDTO.cjs +17 -17
- package/src/lib/base/internal/FlexibleDTO.mjs +17 -17
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +17 -17
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +17 -17
- package/src/lib/base/internal/IEEE754.cjs +1 -1
- package/src/lib/base/internal/IEEE754.mjs +1 -1
- package/src/lib/base/internal/MethodAssistantFunction.cjs +4 -4
- package/src/lib/base/internal/MethodAssistantFunction.mjs +4 -4
- package/src/lib/base/internal/MethodValidation.cjs +17 -17
- package/src/lib/base/internal/MethodValidation.mjs +17 -17
- package/src/lib/base/internal/ModuleConfigLoader.cjs +30 -30
- package/src/lib/base/internal/ModuleConfigLoader.mjs +30 -30
- package/src/lib/base/internal/ObjectConfiguration.cjs +17 -17
- package/src/lib/base/internal/ObjectConfiguration.mjs +17 -17
- package/src/lib/base/internal/ObjectContainer.cjs +2 -2
- package/src/lib/base/internal/ObjectContainer.mjs +2 -2
- package/src/lib/base/internal/ObjectInjection.cjs +2 -2
- package/src/lib/base/internal/ObjectInjection.mjs +2 -2
- package/src/lib/base/internal/ObjectLifetime.cjs +5 -5
- package/src/lib/base/internal/ObjectLifetime.mjs +5 -5
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +17 -17
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +17 -17
- package/src/lib/base/internal/ObjectType.cjs +30 -30
- package/src/lib/base/internal/ObjectType.mjs +30 -30
- package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
- package/src/lib/base/internal/PatternManager.cjs +3 -3
- package/src/lib/base/internal/PatternManager.mjs +3 -3
- package/src/lib/base/internal/StringifyPattern.cjs +4 -4
- package/src/lib/base/internal/StringifyPattern.mjs +4 -4
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +17 -17
- package/src/lib/context/CLIContext.mjs +17 -17
- package/src/lib/context/HTTPContext.cjs +17 -17
- package/src/lib/context/HTTPContext.mjs +17 -17
- package/src/lib/context/ServiceContext.cjs +17 -17
- package/src/lib/context/ServiceContext.mjs +17 -17
- package/src/lib/core/Alias.cjs +4 -4
- package/src/lib/core/Alias.mjs +4 -4
- package/src/lib/core/Application.cjs +110 -110
- package/src/lib/core/Application.mjs +110 -110
- package/src/lib/core/Component.cjs +31 -31
- package/src/lib/core/Component.mjs +31 -31
- package/src/lib/core/Container.cjs +30 -30
- package/src/lib/core/Container.mjs +30 -30
- package/src/lib/core/DTO.cjs +17 -17
- package/src/lib/core/DTO.mjs +17 -17
- package/src/lib/core/Module.cjs +33 -33
- package/src/lib/core/Module.mjs +33 -33
- package/src/lib/core/Provider.cjs +30 -30
- package/src/lib/core/Provider.mjs +30 -30
- package/src/lib/core/Time.cjs +5 -5
- package/src/lib/core/Time.mjs +5 -5
- package/src/lib/helpers/ArrayToSet.cjs +1 -1
- package/src/lib/helpers/ArrayToSet.mjs +1 -1
- package/src/lib/helpers/As.cjs +1 -1
- package/src/lib/helpers/As.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
- package/src/lib/helpers/Delay.cjs +1 -1
- package/src/lib/helpers/Delay.mjs +1 -1
- package/src/lib/helpers/DevNull.cjs +1 -1
- package/src/lib/helpers/DevNull.mjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
- package/src/lib/helpers/Glob.cjs +4 -4
- package/src/lib/helpers/Glob.mjs +4 -4
- package/src/lib/helpers/GraceExit.cjs +1 -1
- package/src/lib/helpers/GraceExit.mjs +1 -1
- package/src/lib/helpers/HexToIEEE754.cjs +1 -1
- package/src/lib/helpers/HexToIEEE754.mjs +1 -1
- package/src/lib/helpers/HexToSigned.cjs +1 -1
- package/src/lib/helpers/HexToSigned.mjs +1 -1
- package/src/lib/helpers/HexToUnsigned.cjs +1 -1
- package/src/lib/helpers/HexToUnsigned.mjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
- package/src/lib/helpers/IPToolkit.cjs +1 -1
- package/src/lib/helpers/IPToolkit.mjs +1 -1
- package/src/lib/helpers/IsAbortError.cjs +1 -1
- package/src/lib/helpers/IsAbortError.mjs +1 -1
- package/src/lib/helpers/IsEmptyObject.cjs +1 -1
- package/src/lib/helpers/IsEmptyObject.mjs +1 -1
- package/src/lib/helpers/IsExists.cjs +1 -1
- package/src/lib/helpers/IsExists.mjs +1 -1
- package/src/lib/helpers/IsGlobString.cjs +3 -3
- package/src/lib/helpers/IsGlobString.mjs +3 -3
- package/src/lib/helpers/IsHtml.cjs +2 -2
- package/src/lib/helpers/IsHtml.mjs +2 -2
- package/src/lib/helpers/IsNativeFunction.cjs +1 -1
- package/src/lib/helpers/IsNativeFunction.mjs +1 -1
- package/src/lib/helpers/IsPath.cjs +1 -1
- package/src/lib/helpers/IsPath.mjs +1 -1
- package/src/lib/helpers/IsPromise.cjs +1 -1
- package/src/lib/helpers/IsPromise.mjs +1 -1
- package/src/lib/helpers/IsPromiseLike.cjs +1 -1
- package/src/lib/helpers/IsPromiseLike.mjs +1 -1
- package/src/lib/helpers/IsSymbol.cjs +17 -17
- package/src/lib/helpers/IsSymbol.mjs +17 -17
- package/src/lib/helpers/IsXML.cjs +3 -3
- package/src/lib/helpers/IsXML.mjs +3 -3
- package/src/lib/helpers/MD5.cjs +3 -3
- package/src/lib/helpers/MD5.mjs +3 -3
- package/src/lib/helpers/MergeArray.cjs +1 -1
- package/src/lib/helpers/MergeArray.mjs +1 -1
- package/src/lib/helpers/MergeMap.cjs +1 -1
- package/src/lib/helpers/MergeMap.mjs +1 -1
- package/src/lib/helpers/MergeSet.cjs +1 -1
- package/src/lib/helpers/MergeSet.mjs +1 -1
- package/src/lib/helpers/NoCase.cjs +1 -1
- package/src/lib/helpers/NoCase.mjs +1 -1
- package/src/lib/helpers/NonceStr.cjs +3 -3
- package/src/lib/helpers/NonceStr.mjs +3 -3
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +2 -2
- package/src/lib/helpers/ObjectHash.mjs +2 -2
- package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
- package/src/lib/helpers/ObjectPath.cjs +1 -1
- package/src/lib/helpers/ObjectPath.mjs +1 -1
- package/src/lib/helpers/ObjectPrototype.cjs +1 -1
- package/src/lib/helpers/ObjectPrototype.mjs +1 -1
- package/src/lib/helpers/ObjectToMap.cjs +1 -1
- package/src/lib/helpers/ObjectToMap.mjs +1 -1
- package/src/lib/helpers/Paginator.cjs +1 -1
- package/src/lib/helpers/Paginator.mjs +1 -1
- package/src/lib/helpers/RandomString.cjs +3 -3
- package/src/lib/helpers/RandomString.mjs +3 -3
- package/src/lib/helpers/SHA1.cjs +3 -3
- package/src/lib/helpers/SHA1.mjs +3 -3
- package/src/lib/helpers/SHA256.cjs +3 -3
- package/src/lib/helpers/SHA256.mjs +3 -3
- package/src/lib/helpers/SetToArray.cjs +1 -1
- package/src/lib/helpers/SetToArray.mjs +1 -1
- package/src/lib/helpers/SignedToHex.cjs +1 -1
- package/src/lib/helpers/SignedToHex.mjs +1 -1
- package/src/lib/helpers/SortArray.cjs +4 -4
- package/src/lib/helpers/SortArray.mjs +4 -4
- package/src/lib/helpers/SortKeys.cjs +1 -1
- package/src/lib/helpers/SortKeys.mjs +1 -1
- package/src/lib/helpers/SortObject.cjs +1 -1
- package/src/lib/helpers/SortObject.mjs +1 -1
- package/src/lib/helpers/Statistics.cjs +2 -2
- package/src/lib/helpers/Statistics.mjs +2 -2
- package/src/lib/helpers/Templating.cjs +1 -1
- package/src/lib/helpers/Templating.mjs +1 -1
- package/src/lib/helpers/URLBuilder.cjs +4 -4
- package/src/lib/helpers/URLBuilder.mjs +4 -4
- package/src/lib/helpers/UUID.cjs +2 -2
- package/src/lib/helpers/UUID.mjs +2 -2
- package/src/lib/helpers/UniqueArray.cjs +1 -1
- package/src/lib/helpers/UniqueArray.mjs +1 -1
- package/src/lib/helpers/UnsignedToHex.cjs +1 -1
- package/src/lib/helpers/UnsignedToHex.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +30 -30
- package/src/lib/ioc/DependencyInjectionContainer.mjs +30 -30
- package/src/lib/ioc/Errors.cjs +17 -17
- package/src/lib/ioc/Errors.mjs +17 -17
- package/src/lib/ioc/FunctionTokenizer.cjs +1 -1
- package/src/lib/ioc/FunctionTokenizer.mjs +1 -1
- package/src/lib/ioc/InjectionMode.cjs +1 -1
- package/src/lib/ioc/InjectionMode.mjs +1 -1
- package/src/lib/ioc/Lifetime.cjs +1 -1
- package/src/lib/ioc/Lifetime.mjs +1 -1
- package/src/lib/ioc/ListModules.cjs +29 -29
- package/src/lib/ioc/ListModules.mjs +29 -29
- package/src/lib/ioc/LoadModules.cjs +17 -17
- package/src/lib/ioc/LoadModules.mjs +17 -17
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +17 -17
- package/src/lib/ioc/Resolvers.mjs +17 -17
- package/src/lib/ioc/Utils.cjs +17 -17
- package/src/lib/ioc/Utils.mjs +17 -17
- package/src/lib/validation/VLD.cjs +6 -6
- package/src/lib/validation/VLD.mjs +6 -6
- package/src/lib/validation/interfaces/AlternativesSchema.cjs +1 -1
- package/src/lib/validation/interfaces/AlternativesSchema.mjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.cjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.mjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.cjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.mjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.cjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.mjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.cjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.mjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.mjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.cjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.mjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.cjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.cjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.mjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.cjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.mjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.cjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.mjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.cjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.mjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.cjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.mjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.cjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.mjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.cjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.mjs +1 -1
- package/src/lib/validation/interfaces/Reference.cjs +1 -1
- package/src/lib/validation/interfaces/Reference.mjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.mjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.cjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.mjs +1 -1
- package/src/lib/validation/interfaces/State.cjs +1 -1
- package/src/lib/validation/interfaces/State.mjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.cjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.mjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.cjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.mjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.mjs +1 -1
- package/src/lib/validation/types/CustomValidator.cjs +1 -1
- package/src/lib/validation/types/CustomValidator.mjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.cjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.mjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.cjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.mjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.cjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.mjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.cjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.mjs +1 -1
- package/src/lib/validation/types/IsUnion.cjs +1 -1
- package/src/lib/validation/types/IsUnion.mjs +1 -1
- package/src/lib/validation/types/LanguageMessages.cjs +1 -1
- package/src/lib/validation/types/LanguageMessages.mjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.cjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.mjs +1 -1
- package/src/lib/validation/types/NullableType.cjs +1 -1
- package/src/lib/validation/types/NullableType.mjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.cjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.mjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.cjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.mjs +1 -1
- package/src/lib/validation/types/PresenceMode.cjs +1 -1
- package/src/lib/validation/types/PresenceMode.mjs +1 -1
- package/src/lib/validation/types/Primitives.cjs +1 -1
- package/src/lib/validation/types/Primitives.mjs +1 -1
- package/src/lib/validation/types/Schema.cjs +1 -1
- package/src/lib/validation/types/Schema.mjs +1 -1
- package/src/lib/validation/types/SchemaFunction.cjs +1 -1
- package/src/lib/validation/types/SchemaFunction.mjs +1 -1
- package/src/lib/validation/types/SchemaLike.cjs +1 -1
- package/src/lib/validation/types/SchemaLike.mjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.mjs +1 -1
- package/src/lib/validation/types/SchemaMap.cjs +1 -1
- package/src/lib/validation/types/SchemaMap.mjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.cjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.mjs +1 -1
- package/src/lib/validation/types/Types.cjs +1 -1
- package/src/lib/validation/types/Types.mjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -1
- package/src/options/ApplicationOptions.cjs +30 -30
- package/src/options/ApplicationOptions.mjs +30 -30
- package/src/options/LoadAnonymousObjectOptions.cjs +30 -30
- package/src/options/LoadAnonymousObjectOptions.mjs +30 -30
- package/src/options/LoadNamedObjectOptions.cjs +30 -30
- package/src/options/LoadNamedObjectOptions.mjs +30 -30
- package/src/options/LoadObjectOptions.cjs +30 -30
- package/src/options/LoadObjectOptions.mjs +30 -30
- package/src/options/ModuleLoadObjectsOptions.cjs +30 -30
- package/src/options/ModuleLoadObjectsOptions.mjs +30 -30
- package/src/options/ModuleOptions.cjs +30 -30
- package/src/options/ModuleOptions.mjs +30 -30
- package/src/options/OverridableNamedObjectOptions.cjs +30 -30
- package/src/options/OverridableNamedObjectOptions.mjs +30 -30
- package/src/options/OverridableObjectOptions.cjs +30 -30
- package/src/options/OverridableObjectOptions.mjs +30 -30
- package/src/providers/Database.cjs +73 -73
- package/src/providers/Database.mjs +73 -73
- package/src/providers/PasswordHash.cjs +31 -31
- package/src/providers/PasswordHash.mjs +31 -31
- package/src/providers/migration/GenerateMigration.cjs +110 -110
- package/src/providers/migration/GenerateMigration.mjs +110 -110
- package/src/types/ActionPattern.cjs +1 -1
- package/src/types/ActionPattern.mjs +1 -1
- package/src/types/ClassDecorator.cjs +1 -1
- package/src/types/ClassDecorator.mjs +1 -1
- package/src/types/ComponentOptions.cjs +1 -1
- package/src/types/ComponentOptions.mjs +1 -1
- package/src/types/JSONSchema.cjs +1 -1
- package/src/types/JSONSchema.mjs +1 -1
- package/src/types/MethodDecorator.cjs +1 -1
- package/src/types/MethodDecorator.mjs +1 -1
- package/src/types/ModuleOptions.cjs +1 -1
- package/src/types/ModuleOptions.mjs +1 -1
- package/src/types/ObjectOptions.cjs +1 -1
- package/src/types/ObjectOptions.mjs +1 -1
- package/src/types/ParameterDecorator.cjs +1 -1
- package/src/types/ParameterDecorator.mjs +1 -1
- package/src/types/PropertyDecorator.cjs +1 -1
- package/src/types/PropertyDecorator.mjs +1 -1
- package/src/types/ProviderOptions.cjs +1 -1
- package/src/types/ProviderOptions.mjs +1 -1
- package/vendor/Package.internal.1.cjs +1 -1
- package/vendor/Package.internal.1.mjs +1 -1
- package/vendor/Package.internal.10.cjs +1 -1
- package/vendor/Package.internal.10.mjs +1 -1
- package/vendor/Package.internal.100.cjs +67 -2
- package/vendor/Package.internal.100.mjs +67 -2
- package/vendor/Package.internal.101.cjs +113 -102
- package/vendor/Package.internal.101.mjs +116 -93
- package/vendor/Package.internal.102.cjs +9 -81
- package/vendor/Package.internal.102.mjs +5 -81
- package/vendor/Package.internal.103.cjs +2 -56
- package/vendor/Package.internal.103.mjs +2 -52
- package/vendor/Package.internal.104.cjs +2 -18
- package/vendor/Package.internal.104.mjs +2 -18
- package/vendor/Package.internal.105.cjs +103 -87
- package/vendor/Package.internal.105.mjs +90 -88
- package/vendor/Package.internal.106.cjs +72 -97
- package/vendor/Package.internal.106.mjs +70 -99
- package/vendor/Package.internal.107.cjs +38 -2156
- package/vendor/Package.internal.107.mjs +37 -2159
- package/vendor/Package.internal.108.cjs +13 -2459
- package/vendor/Package.internal.108.mjs +13 -2429
- package/vendor/Package.internal.109.cjs +70 -1280
- package/vendor/Package.internal.109.mjs +73 -1269
- package/vendor/Package.internal.11.cjs +271 -372
- package/vendor/Package.internal.11.mjs +268 -367
- package/vendor/Package.internal.110.cjs +108 -28
- package/vendor/Package.internal.110.mjs +109 -27
- package/vendor/Package.internal.111.cjs +2169 -13
- package/vendor/Package.internal.111.mjs +2169 -13
- package/vendor/Package.internal.112.cjs +2456 -11
- package/vendor/Package.internal.112.mjs +2425 -12
- package/vendor/Package.internal.113.cjs +1289 -35
- package/vendor/Package.internal.113.mjs +1277 -37
- package/vendor/Package.internal.114.cjs +23 -131
- package/vendor/Package.internal.114.mjs +26 -136
- package/vendor/Package.internal.115.cjs +19 -1
- package/vendor/Package.internal.115.mjs +18 -1
- package/vendor/Package.internal.116.cjs +18 -3
- package/vendor/Package.internal.116.mjs +20 -3
- package/vendor/Package.internal.117.cjs +50 -2
- package/vendor/Package.internal.117.mjs +52 -2
- package/vendor/Package.internal.118.cjs +139 -2
- package/vendor/Package.internal.118.mjs +141 -2
- package/vendor/Package.internal.119.cjs +1 -3
- package/vendor/Package.internal.119.mjs +1 -2
- package/vendor/Package.internal.12.cjs +12469 -270
- package/vendor/Package.internal.12.mjs +12452 -271
- package/vendor/Package.internal.120.cjs +3 -46
- package/vendor/Package.internal.120.mjs +3 -46
- package/vendor/Package.internal.121.cjs +2 -12
- package/vendor/Package.internal.121.mjs +2 -14
- package/vendor/Package.internal.122.cjs +2 -10
- package/vendor/Package.internal.122.mjs +2 -12
- package/vendor/Package.internal.123.cjs +2 -18
- package/vendor/Package.internal.123.mjs +2 -18
- package/vendor/Package.internal.124.cjs +35 -104
- package/vendor/Package.internal.124.mjs +35 -104
- package/vendor/Package.internal.125.cjs +12 -16
- package/vendor/Package.internal.125.mjs +13 -15
- package/vendor/Package.internal.126.cjs +10 -17
- package/vendor/Package.internal.126.mjs +12 -17
- package/vendor/Package.internal.127.cjs +12 -8868
- package/vendor/Package.internal.127.mjs +12 -8868
- package/vendor/Package.internal.128.cjs +88 -869
- package/vendor/Package.internal.128.mjs +98 -879
- package/vendor/Package.internal.129.cjs +10 -6761
- package/vendor/Package.internal.129.mjs +10 -6769
- package/vendor/Package.internal.13.cjs +267 -701
- package/vendor/Package.internal.13.mjs +269 -703
- package/vendor/Package.internal.130.cjs +12 -466
- package/vendor/Package.internal.130.mjs +12 -454
- package/vendor/Package.internal.131.cjs +8819 -560
- package/vendor/Package.internal.131.mjs +8821 -558
- package/vendor/Package.internal.132.cjs +878 -76
- package/vendor/Package.internal.132.mjs +881 -73
- package/vendor/Package.internal.133.cjs +6767 -2
- package/vendor/Package.internal.133.mjs +6775 -2
- package/vendor/Package.internal.134.cjs +446 -3726
- package/vendor/Package.internal.134.mjs +440 -3732
- package/vendor/Package.internal.135.cjs +577 -521
- package/vendor/Package.internal.135.mjs +573 -521
- package/vendor/Package.internal.136.cjs +95 -2
- package/vendor/Package.internal.136.mjs +89 -2
- package/vendor/Package.internal.137.cjs +2 -2
- package/vendor/Package.internal.137.mjs +2 -2
- package/vendor/Package.internal.138.cjs +3751 -2
- package/vendor/Package.internal.138.mjs +3751 -2
- package/vendor/Package.internal.139.cjs +559 -2
- package/vendor/Package.internal.139.mjs +559 -2
- package/vendor/Package.internal.14.cjs +710 -905
- package/vendor/Package.internal.14.mjs +711 -894
- package/vendor/Package.internal.140.cjs +2 -2
- package/vendor/Package.internal.140.mjs +2 -2
- package/vendor/Package.internal.141.cjs +2 -2
- package/vendor/Package.internal.141.mjs +2 -2
- package/vendor/Package.internal.142.cjs +2 -2
- package/vendor/Package.internal.142.mjs +2 -2
- package/vendor/Package.internal.143.cjs +2 -2
- package/vendor/Package.internal.143.mjs +2 -2
- package/vendor/Package.internal.144.cjs +2 -2
- package/vendor/Package.internal.144.mjs +2 -2
- package/vendor/Package.internal.145.cjs +2 -2
- package/vendor/Package.internal.145.mjs +2 -2
- package/vendor/Package.internal.146.cjs +2 -2
- package/vendor/Package.internal.146.mjs +2 -2
- package/vendor/Package.internal.147.cjs +2 -406
- package/vendor/Package.internal.147.mjs +2 -400
- package/vendor/Package.internal.148.cjs +2 -102
- package/vendor/Package.internal.148.mjs +2 -104
- package/vendor/Package.internal.149.cjs +2 -25
- package/vendor/Package.internal.149.mjs +2 -27
- package/vendor/Package.internal.15.cjs +70 -40
- package/vendor/Package.internal.15.mjs +72 -44
- package/vendor/Package.internal.150.cjs +2 -2
- package/vendor/Package.internal.150.mjs +2 -2
- package/vendor/Package.internal.151.cjs +406 -2
- package/vendor/Package.internal.151.mjs +400 -2
- package/vendor/Package.internal.152.cjs +78 -697
- package/vendor/Package.internal.152.mjs +79 -698
- package/vendor/Package.internal.153.cjs +19 -1540
- package/vendor/Package.internal.153.mjs +21 -1534
- package/vendor/Package.internal.154.cjs +2 -362
- package/vendor/Package.internal.154.mjs +2 -364
- package/vendor/Package.internal.155.cjs +2 -105
- package/vendor/Package.internal.155.mjs +2 -107
- package/vendor/Package.internal.156.cjs +680 -593
- package/vendor/Package.internal.156.mjs +683 -582
- package/vendor/Package.internal.157.cjs +1444 -439
- package/vendor/Package.internal.157.mjs +1439 -432
- package/vendor/Package.internal.158.cjs +325 -566
- package/vendor/Package.internal.158.mjs +326 -567
- package/vendor/Package.internal.159.cjs +94 -126
- package/vendor/Package.internal.159.mjs +95 -119
- package/vendor/Package.internal.16.cjs +950 -232
- package/vendor/Package.internal.16.mjs +942 -236
- package/vendor/Package.internal.160.cjs +602 -85
- package/vendor/Package.internal.160.mjs +594 -83
- package/vendor/Package.internal.161.cjs +459 -1140
- package/vendor/Package.internal.161.mjs +460 -1141
- package/vendor/Package.internal.162.cjs +588 -73
- package/vendor/Package.internal.162.mjs +588 -81
- package/vendor/Package.internal.163.cjs +137 -2
- package/vendor/Package.internal.163.mjs +131 -2
- package/vendor/Package.internal.164.cjs +117 -2
- package/vendor/Package.internal.164.mjs +111 -2
- package/vendor/Package.internal.165.cjs +1204 -35
- package/vendor/Package.internal.165.mjs +1195 -36
- package/vendor/Package.internal.166.cjs +86 -6
- package/vendor/Package.internal.166.mjs +95 -7
- package/vendor/Package.internal.167.cjs +2 -10
- package/vendor/Package.internal.167.mjs +2 -6
- package/vendor/Package.internal.168.cjs +2 -163
- package/vendor/Package.internal.168.mjs +2 -163
- package/vendor/Package.internal.169.cjs +46 -14
- package/vendor/Package.internal.169.mjs +49 -9
- package/vendor/Package.internal.17.cjs +41 -429
- package/vendor/Package.internal.17.mjs +42 -430
- package/vendor/Package.internal.170.cjs +6 -247
- package/vendor/Package.internal.170.mjs +7 -246
- package/vendor/Package.internal.171.cjs +7 -944
- package/vendor/Package.internal.171.mjs +4 -945
- package/vendor/Package.internal.172.cjs +157 -19
- package/vendor/Package.internal.172.mjs +160 -24
- package/vendor/Package.internal.173.cjs +10 -67
- package/vendor/Package.internal.173.mjs +10 -67
- package/vendor/Package.internal.174.cjs +229 -633
- package/vendor/Package.internal.174.mjs +227 -631
- package/vendor/Package.internal.175.cjs +927 -55
- package/vendor/Package.internal.175.mjs +926 -54
- package/vendor/Package.internal.176.cjs +19 -1133
- package/vendor/Package.internal.176.mjs +25 -1031
- package/vendor/Package.internal.177.cjs +69 -59
- package/vendor/Package.internal.177.mjs +63 -59
- package/vendor/Package.internal.178.cjs +624 -81
- package/vendor/Package.internal.178.mjs +624 -81
- package/vendor/Package.internal.179.cjs +60 -85
- package/vendor/Package.internal.179.mjs +60 -85
- package/vendor/Package.internal.18.cjs +233 -528
- package/vendor/Package.internal.18.mjs +234 -523
- package/vendor/Package.internal.180.cjs +940 -45249
- package/vendor/Package.internal.180.mjs +869 -45268
- package/vendor/Package.internal.181.cjs +66 -4
- package/vendor/Package.internal.181.mjs +66 -4
- package/vendor/Package.internal.182.cjs +103 -21
- package/vendor/Package.internal.182.mjs +103 -21
- package/vendor/Package.internal.183.cjs +84 -299
- package/vendor/Package.internal.183.mjs +84 -299
- package/vendor/Package.internal.184.cjs +45316 -809
- package/vendor/Package.internal.184.mjs +45270 -789
- package/vendor/Package.internal.185.cjs +4 -1086
- package/vendor/Package.internal.185.mjs +4 -1088
- package/vendor/Package.internal.186.cjs +21 -156
- package/vendor/Package.internal.186.mjs +20 -157
- package/vendor/Package.internal.187.cjs +310 -8
- package/vendor/Package.internal.187.mjs +310 -8
- package/vendor/Package.internal.188.cjs +936 -7
- package/vendor/Package.internal.188.mjs +947 -8
- package/vendor/Package.internal.189.cjs +1072 -31
- package/vendor/Package.internal.189.mjs +1074 -31
- package/vendor/Package.internal.19.cjs +427 -217
- package/vendor/Package.internal.19.mjs +433 -223
- package/vendor/Package.internal.190.cjs +134 -462
- package/vendor/Package.internal.190.mjs +135 -441
- package/vendor/Package.internal.191.cjs +13 -2
- package/vendor/Package.internal.191.mjs +13 -2
- package/vendor/Package.internal.192.cjs +12 -2
- package/vendor/Package.internal.192.mjs +12 -2
- package/vendor/Package.internal.193.cjs +47 -2
- package/vendor/Package.internal.193.mjs +47 -2
- package/vendor/Package.internal.194.cjs +491 -2
- package/vendor/Package.internal.194.mjs +471 -2
- package/vendor/Package.internal.195.cjs +2 -2
- package/vendor/Package.internal.195.mjs +2 -2
- package/vendor/Package.internal.196.cjs +2 -2
- package/vendor/Package.internal.196.mjs +2 -2
- package/vendor/Package.internal.197.cjs +2 -2
- package/vendor/Package.internal.197.mjs +2 -2
- package/vendor/Package.internal.198.cjs +2 -2
- package/vendor/Package.internal.198.mjs +2 -2
- package/vendor/Package.internal.199.cjs +4 -0
- package/vendor/Package.internal.199.mjs +2 -0
- package/vendor/Package.internal.2.cjs +1 -1
- package/vendor/Package.internal.2.mjs +1 -1
- package/vendor/Package.internal.20.cjs +525 -957
- package/vendor/Package.internal.20.mjs +521 -959
- package/vendor/Package.internal.200.cjs +4 -0
- package/vendor/Package.internal.200.mjs +2 -0
- package/vendor/Package.internal.201.cjs +4 -0
- package/vendor/Package.internal.201.mjs +2 -0
- package/vendor/Package.internal.202.cjs +4 -0
- package/vendor/Package.internal.202.mjs +2 -0
- package/vendor/Package.internal.21.cjs +406 -8
- package/vendor/Package.internal.21.mjs +408 -8
- package/vendor/Package.internal.22.cjs +913 -123
- package/vendor/Package.internal.22.mjs +909 -123
- package/vendor/Package.internal.23.cjs +214 -136
- package/vendor/Package.internal.23.mjs +215 -135
- package/vendor/Package.internal.24.cjs +996 -5
- package/vendor/Package.internal.24.mjs +998 -5
- package/vendor/Package.internal.25.cjs +8 -20
- package/vendor/Package.internal.25.mjs +7 -19
- package/vendor/Package.internal.26.cjs +120 -473
- package/vendor/Package.internal.26.mjs +120 -469
- package/vendor/Package.internal.27.cjs +127 -60
- package/vendor/Package.internal.27.mjs +128 -57
- package/vendor/Package.internal.28.cjs +6 -2
- package/vendor/Package.internal.28.mjs +6 -2
- package/vendor/Package.internal.29.cjs +16 -35
- package/vendor/Package.internal.29.mjs +16 -35
- package/vendor/Package.internal.3.cjs +1 -1
- package/vendor/Package.internal.3.mjs +1 -1
- package/vendor/Package.internal.30.cjs +473 -21
- package/vendor/Package.internal.30.mjs +472 -24
- package/vendor/Package.internal.31.cjs +77 -9
- package/vendor/Package.internal.31.mjs +73 -9
- package/vendor/Package.internal.32.cjs +2 -189
- package/vendor/Package.internal.32.mjs +2 -191
- package/vendor/Package.internal.33.cjs +31 -53
- package/vendor/Package.internal.33.mjs +32 -54
- package/vendor/Package.internal.34.cjs +20 -160
- package/vendor/Package.internal.34.mjs +24 -166
- package/vendor/Package.internal.35.cjs +10 -2072
- package/vendor/Package.internal.35.mjs +10 -2068
- package/vendor/Package.internal.36.cjs +186 -517
- package/vendor/Package.internal.36.mjs +189 -512
- package/vendor/Package.internal.37.cjs +57 -413
- package/vendor/Package.internal.37.mjs +57 -409
- package/vendor/Package.internal.38.cjs +132 -2329
- package/vendor/Package.internal.38.mjs +133 -2318
- package/vendor/Package.internal.39.cjs +2063 -50
- package/vendor/Package.internal.39.mjs +2058 -57
- package/vendor/Package.internal.4.cjs +1 -1
- package/vendor/Package.internal.4.mjs +1 -1
- package/vendor/Package.internal.40.cjs +507 -137
- package/vendor/Package.internal.40.mjs +504 -140
- package/vendor/Package.internal.41.cjs +355 -573
- package/vendor/Package.internal.41.mjs +353 -577
- package/vendor/Package.internal.42.cjs +2315 -196
- package/vendor/Package.internal.42.mjs +2307 -200
- package/vendor/Package.internal.43.cjs +57 -222
- package/vendor/Package.internal.43.mjs +64 -217
- package/vendor/Package.internal.44.cjs +150 -2
- package/vendor/Package.internal.44.mjs +150 -2
- package/vendor/Package.internal.45.cjs +591 -317
- package/vendor/Package.internal.45.mjs +596 -316
- package/vendor/Package.internal.46.cjs +236 -31
- package/vendor/Package.internal.46.mjs +238 -31
- package/vendor/Package.internal.47.cjs +217 -46
- package/vendor/Package.internal.47.mjs +213 -46
- package/vendor/Package.internal.48.cjs +2 -23
- package/vendor/Package.internal.48.mjs +2 -23
- package/vendor/Package.internal.49.cjs +354 -87
- package/vendor/Package.internal.49.mjs +351 -82
- package/vendor/Package.internal.5.cjs +1 -1
- package/vendor/Package.internal.5.mjs +1 -1
- package/vendor/Package.internal.50.cjs +33 -79
- package/vendor/Package.internal.50.mjs +33 -79
- package/vendor/Package.internal.51.cjs +46 -81
- package/vendor/Package.internal.51.mjs +45 -68
- package/vendor/Package.internal.52.cjs +18 -21
- package/vendor/Package.internal.52.mjs +18 -21
- package/vendor/Package.internal.53.cjs +78 -335
- package/vendor/Package.internal.53.mjs +73 -336
- package/vendor/Package.internal.54.cjs +86 -2
- package/vendor/Package.internal.54.mjs +86 -2
- package/vendor/Package.internal.55.cjs +64 -172
- package/vendor/Package.internal.55.mjs +58 -174
- package/vendor/Package.internal.56.cjs +23 -22
- package/vendor/Package.internal.56.mjs +23 -24
- package/vendor/Package.internal.57.cjs +353 -2
- package/vendor/Package.internal.57.mjs +353 -2
- package/vendor/Package.internal.58.cjs +2 -198
- package/vendor/Package.internal.58.mjs +2 -200
- package/vendor/Package.internal.59.cjs +127 -3945
- package/vendor/Package.internal.59.mjs +126 -3958
- package/vendor/Package.internal.6.cjs +2 -2
- package/vendor/Package.internal.6.mjs +2 -2
- package/vendor/Package.internal.60.cjs +25 -2
- package/vendor/Package.internal.60.mjs +27 -2
- package/vendor/Package.internal.61.cjs +2 -319
- package/vendor/Package.internal.61.mjs +2 -321
- package/vendor/Package.internal.62.cjs +175 -340
- package/vendor/Package.internal.62.mjs +177 -340
- package/vendor/Package.internal.63.cjs +3959 -343
- package/vendor/Package.internal.63.mjs +3967 -335
- package/vendor/Package.internal.64.cjs +2 -125
- package/vendor/Package.internal.64.mjs +2 -125
- package/vendor/Package.internal.65.cjs +314 -24
- package/vendor/Package.internal.65.mjs +316 -24
- package/vendor/Package.internal.66.cjs +347 -69
- package/vendor/Package.internal.66.mjs +350 -72
- package/vendor/Package.internal.67.cjs +386 -44
- package/vendor/Package.internal.67.mjs +386 -50
- package/vendor/Package.internal.68.cjs +115 -22
- package/vendor/Package.internal.68.mjs +114 -21
- package/vendor/Package.internal.69.cjs +29 -2
- package/vendor/Package.internal.69.mjs +29 -2
- package/vendor/Package.internal.7.cjs +1 -1
- package/vendor/Package.internal.7.mjs +1 -1
- package/vendor/Package.internal.70.cjs +67 -664
- package/vendor/Package.internal.70.mjs +67 -644
- package/vendor/Package.internal.71.cjs +41 -13876
- package/vendor/Package.internal.71.mjs +41 -13852
- package/vendor/Package.internal.72.cjs +26 -29
- package/vendor/Package.internal.72.mjs +27 -26
- package/vendor/Package.internal.73.cjs +2 -4075
- package/vendor/Package.internal.73.mjs +2 -4077
- package/vendor/Package.internal.74.cjs +654 -1634
- package/vendor/Package.internal.74.mjs +633 -1635
- package/vendor/Package.internal.75.cjs +13834 -197
- package/vendor/Package.internal.75.mjs +13810 -197
- package/vendor/Package.internal.76.cjs +25 -4952
- package/vendor/Package.internal.76.mjs +23 -4940
- package/vendor/Package.internal.77.cjs +3975 -1137
- package/vendor/Package.internal.77.mjs +3979 -1127
- package/vendor/Package.internal.78.cjs +1635 -311
- package/vendor/Package.internal.78.mjs +1637 -299
- package/vendor/Package.internal.79.cjs +248 -23
- package/vendor/Package.internal.79.mjs +251 -26
- package/vendor/Package.internal.8.cjs +1 -1
- package/vendor/Package.internal.8.mjs +1 -1
- package/vendor/Package.internal.80.cjs +4941 -65
- package/vendor/Package.internal.80.mjs +4926 -66
- package/vendor/Package.internal.81.cjs +1221 -37
- package/vendor/Package.internal.81.mjs +1208 -38
- package/vendor/Package.internal.82.cjs +334 -9
- package/vendor/Package.internal.82.mjs +322 -9
- package/vendor/Package.internal.83.cjs +32 -1353
- package/vendor/Package.internal.83.mjs +32 -1355
- package/vendor/Package.internal.84.cjs +82 -6
- package/vendor/Package.internal.84.mjs +86 -4
- package/vendor/Package.internal.85.cjs +53 -2
- package/vendor/Package.internal.85.mjs +55 -2
- package/vendor/Package.internal.86.cjs +8 -344
- package/vendor/Package.internal.86.mjs +8 -346
- package/vendor/Package.internal.87.cjs +1351 -76
- package/vendor/Package.internal.87.mjs +1352 -77
- package/vendor/Package.internal.88.cjs +6 -1439
- package/vendor/Package.internal.88.mjs +4 -1431
- package/vendor/Package.internal.89.cjs +2 -142
- package/vendor/Package.internal.89.mjs +2 -142
- package/vendor/Package.internal.9.cjs +1 -1
- package/vendor/Package.internal.9.mjs +1 -1
- package/vendor/Package.internal.90.cjs +274 -1745
- package/vendor/Package.internal.90.mjs +275 -1738
- package/vendor/Package.internal.91.cjs +67 -117
- package/vendor/Package.internal.91.mjs +69 -113
- package/vendor/Package.internal.92.cjs +1388 -151
- package/vendor/Package.internal.92.mjs +1377 -152
- package/vendor/Package.internal.93.cjs +94 -1591
- package/vendor/Package.internal.93.mjs +94 -1593
- package/vendor/Package.internal.94.cjs +1802 -54
- package/vendor/Package.internal.94.mjs +1799 -59
- package/vendor/Package.internal.95.cjs +126 -24
- package/vendor/Package.internal.95.mjs +121 -25
- package/vendor/Package.internal.96.cjs +189 -50
- package/vendor/Package.internal.96.mjs +194 -53
- package/vendor/Package.internal.97.cjs +1611 -93
- package/vendor/Package.internal.97.mjs +1615 -95
- package/vendor/Package.internal.98.cjs +66 -8
- package/vendor/Package.internal.98.mjs +71 -5
- package/vendor/Package.internal.99.cjs +26 -2
- package/vendor/Package.internal.99.mjs +28 -2
|
@@ -1,1433 +1,6 @@
|
|
|
1
|
-
/* Build Date: Mon Nov 24 2025
|
|
2
|
-
import
|
|
1
|
+
/* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
|
|
2
|
+
import r from "events";
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
var e = r;
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { m as s } from "./Package.internal.90.mjs";
|
|
9
|
-
|
|
10
|
-
import { m as n } from "./Package.internal.91.mjs";
|
|
11
|
-
|
|
12
|
-
import { o as i, a as o } from "./Package.internal.14.mjs";
|
|
13
|
-
|
|
14
|
-
import a from "stream";
|
|
15
|
-
|
|
16
|
-
import c from "fs";
|
|
17
|
-
|
|
18
|
-
var u = {};
|
|
19
|
-
|
|
20
|
-
var l = {};
|
|
21
|
-
|
|
22
|
-
var h = {};
|
|
23
|
-
|
|
24
|
-
Object.defineProperty(h, "__esModule", {
|
|
25
|
-
value: true
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
h.splitWhen = h.flatten = void 0;
|
|
29
|
-
|
|
30
|
-
function f(t) {
|
|
31
|
-
return t.reduce((t, e) => [].concat(t, e), []);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
h.flatten = f;
|
|
35
|
-
|
|
36
|
-
function p(t, e) {
|
|
37
|
-
const r = [ [] ];
|
|
38
|
-
let s = 0;
|
|
39
|
-
for (const n of t) {
|
|
40
|
-
if (e(n)) {
|
|
41
|
-
s++;
|
|
42
|
-
r[s] = [];
|
|
43
|
-
} else {
|
|
44
|
-
r[s].push(n);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
return r;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
h.splitWhen = p;
|
|
51
|
-
|
|
52
|
-
var d = {};
|
|
53
|
-
|
|
54
|
-
Object.defineProperty(d, "__esModule", {
|
|
55
|
-
value: true
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
d.isEnoentCodeError = void 0;
|
|
59
|
-
|
|
60
|
-
function _(t) {
|
|
61
|
-
return t.code === "ENOENT";
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
d.isEnoentCodeError = _;
|
|
65
|
-
|
|
66
|
-
var g = {};
|
|
67
|
-
|
|
68
|
-
Object.defineProperty(g, "__esModule", {
|
|
69
|
-
value: true
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
g.createDirentFromStats = void 0;
|
|
73
|
-
|
|
74
|
-
class DirentFromStats {
|
|
75
|
-
constructor(t, e) {
|
|
76
|
-
this.name = t;
|
|
77
|
-
this.isBlockDevice = e.isBlockDevice.bind(e);
|
|
78
|
-
this.isCharacterDevice = e.isCharacterDevice.bind(e);
|
|
79
|
-
this.isDirectory = e.isDirectory.bind(e);
|
|
80
|
-
this.isFIFO = e.isFIFO.bind(e);
|
|
81
|
-
this.isFile = e.isFile.bind(e);
|
|
82
|
-
this.isSocket = e.isSocket.bind(e);
|
|
83
|
-
this.isSymbolicLink = e.isSymbolicLink.bind(e);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
function m(t, e) {
|
|
88
|
-
return new DirentFromStats(t, e);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
g.createDirentFromStats = m;
|
|
92
|
-
|
|
93
|
-
var y = {};
|
|
94
|
-
|
|
95
|
-
Object.defineProperty(y, "__esModule", {
|
|
96
|
-
value: true
|
|
97
|
-
});
|
|
98
|
-
|
|
99
|
-
y.convertPosixPathToPattern = y.convertWindowsPathToPattern = y.convertPathToPattern = y.escapePosixPath = y.escapeWindowsPath = y.escape = y.removeLeadingDotSegment = y.makeAbsolute = y.unixify = void 0;
|
|
100
|
-
|
|
101
|
-
const P = t;
|
|
102
|
-
|
|
103
|
-
const v = e;
|
|
104
|
-
|
|
105
|
-
const b = P.platform() === "win32";
|
|
106
|
-
|
|
107
|
-
const S = 2;
|
|
108
|
-
|
|
109
|
-
const k = /(\\?)([()*?[\]{|}]|^!|[!+@](?=\()|\\(?![!()*+?@[\]{|}]))/g;
|
|
110
|
-
|
|
111
|
-
const E = /(\\?)([()[\]{}]|^!|[!+@](?=\())/g;
|
|
112
|
-
|
|
113
|
-
const O = /^\\\\([.?])/;
|
|
114
|
-
|
|
115
|
-
const w = /\\(?![!()+@[\]{}])/g;
|
|
116
|
-
|
|
117
|
-
function D(t) {
|
|
118
|
-
return t.replace(/\\/g, "/");
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
y.unixify = D;
|
|
122
|
-
|
|
123
|
-
function T(t, e) {
|
|
124
|
-
return v.resolve(t, e);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
y.makeAbsolute = T;
|
|
128
|
-
|
|
129
|
-
function M(t) {
|
|
130
|
-
if (t.charAt(0) === ".") {
|
|
131
|
-
const e = t.charAt(1);
|
|
132
|
-
if (e === "/" || e === "\\") {
|
|
133
|
-
return t.slice(S);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
return t;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
y.removeLeadingDotSegment = M;
|
|
140
|
-
|
|
141
|
-
y.escape = b ? F : x;
|
|
142
|
-
|
|
143
|
-
function F(t) {
|
|
144
|
-
return t.replace(E, "\\$2");
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
y.escapeWindowsPath = F;
|
|
148
|
-
|
|
149
|
-
function x(t) {
|
|
150
|
-
return t.replace(k, "\\$2");
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
y.escapePosixPath = x;
|
|
154
|
-
|
|
155
|
-
y.convertPathToPattern = b ? j : R;
|
|
156
|
-
|
|
157
|
-
function j(t) {
|
|
158
|
-
return F(t).replace(O, "//$1").replace(w, "/");
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
y.convertWindowsPathToPattern = j;
|
|
162
|
-
|
|
163
|
-
function R(t) {
|
|
164
|
-
return x(t);
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
y.convertPosixPathToPattern = R;
|
|
168
|
-
|
|
169
|
-
var A = {};
|
|
170
|
-
|
|
171
|
-
var L = r;
|
|
172
|
-
|
|
173
|
-
var B = e.posix.dirname;
|
|
174
|
-
|
|
175
|
-
var N = t.platform() === "win32";
|
|
176
|
-
|
|
177
|
-
var V = "/";
|
|
178
|
-
|
|
179
|
-
var W = /\\/g;
|
|
180
|
-
|
|
181
|
-
var I = /[\{\[].*[\}\]]$/;
|
|
182
|
-
|
|
183
|
-
var C = /(^|[^\\])([\{\[]|\([^\)]+$)/;
|
|
184
|
-
|
|
185
|
-
var G = /\\([\!\*\?\|\[\]\(\)\{\}])/g;
|
|
186
|
-
|
|
187
|
-
var $ = function t(e, r) {
|
|
188
|
-
var s = Object.assign({
|
|
189
|
-
flipBackslashes: true
|
|
190
|
-
}, r);
|
|
191
|
-
if (s.flipBackslashes && N && e.indexOf(V) < 0) {
|
|
192
|
-
e = e.replace(W, V);
|
|
193
|
-
}
|
|
194
|
-
if (I.test(e)) {
|
|
195
|
-
e += V;
|
|
196
|
-
}
|
|
197
|
-
e += "a";
|
|
198
|
-
do {
|
|
199
|
-
e = B(e);
|
|
200
|
-
} while (L(e) || C.test(e));
|
|
201
|
-
return e.replace(G, "$1");
|
|
202
|
-
};
|
|
203
|
-
|
|
204
|
-
Object.defineProperty(A, "__esModule", {
|
|
205
|
-
value: true
|
|
206
|
-
});
|
|
207
|
-
|
|
208
|
-
A.isAbsolute = A.partitionAbsoluteAndRelative = A.removeDuplicateSlashes = A.matchAny = A.convertPatternsToRe = A.makeRe = A.getPatternParts = A.expandBraceExpansion = A.expandPatternsWithBraceExpansion = A.isAffectDepthOfReadingPattern = A.endsWithSlashGlobStar = A.hasGlobStar = A.getBaseDirectory = A.isPatternRelatedToParentDirectory = A.getPatternsOutsideCurrentDirectory = A.getPatternsInsideCurrentDirectory = A.getPositivePatterns = A.getNegativePatterns = A.isPositivePattern = A.isNegativePattern = A.convertToNegativePattern = A.convertToPositivePattern = A.isDynamicPattern = A.isStaticPattern = void 0;
|
|
209
|
-
|
|
210
|
-
const q = e;
|
|
211
|
-
|
|
212
|
-
const U = $;
|
|
213
|
-
|
|
214
|
-
const Y = s;
|
|
215
|
-
|
|
216
|
-
const z = "**";
|
|
217
|
-
|
|
218
|
-
const H = "\\";
|
|
219
|
-
|
|
220
|
-
const J = /[*?]|^!/;
|
|
221
|
-
|
|
222
|
-
const K = /\[[^[]*]/;
|
|
223
|
-
|
|
224
|
-
const Q = /(?:^|[^!*+?@])\([^(]*\|[^|]*\)/;
|
|
225
|
-
|
|
226
|
-
const X = /[!*+?@]\([^(]*\)/;
|
|
227
|
-
|
|
228
|
-
const Z = /,|\.\./;
|
|
229
|
-
|
|
230
|
-
const tt = /(?!^)\/{2,}/g;
|
|
231
|
-
|
|
232
|
-
function et(t, e = {}) {
|
|
233
|
-
return !rt(t, e);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
A.isStaticPattern = et;
|
|
237
|
-
|
|
238
|
-
function rt(t, e = {}) {
|
|
239
|
-
if (t === "") {
|
|
240
|
-
return false;
|
|
241
|
-
}
|
|
242
|
-
if (e.caseSensitiveMatch === false || t.includes(H)) {
|
|
243
|
-
return true;
|
|
244
|
-
}
|
|
245
|
-
if (J.test(t) || K.test(t) || Q.test(t)) {
|
|
246
|
-
return true;
|
|
247
|
-
}
|
|
248
|
-
if (e.extglob !== false && X.test(t)) {
|
|
249
|
-
return true;
|
|
250
|
-
}
|
|
251
|
-
if (e.braceExpansion !== false && st(t)) {
|
|
252
|
-
return true;
|
|
253
|
-
}
|
|
254
|
-
return false;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
A.isDynamicPattern = rt;
|
|
258
|
-
|
|
259
|
-
function st(t) {
|
|
260
|
-
const e = t.indexOf("{");
|
|
261
|
-
if (e === -1) {
|
|
262
|
-
return false;
|
|
263
|
-
}
|
|
264
|
-
const r = t.indexOf("}", e + 1);
|
|
265
|
-
if (r === -1) {
|
|
266
|
-
return false;
|
|
267
|
-
}
|
|
268
|
-
const s = t.slice(e, r);
|
|
269
|
-
return Z.test(s);
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
function nt(t) {
|
|
273
|
-
return ot(t) ? t.slice(1) : t;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
A.convertToPositivePattern = nt;
|
|
277
|
-
|
|
278
|
-
function it(t) {
|
|
279
|
-
return "!" + t;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
A.convertToNegativePattern = it;
|
|
283
|
-
|
|
284
|
-
function ot(t) {
|
|
285
|
-
return t.startsWith("!") && t[1] !== "(";
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
A.isNegativePattern = ot;
|
|
289
|
-
|
|
290
|
-
function at(t) {
|
|
291
|
-
return !ot(t);
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
A.isPositivePattern = at;
|
|
295
|
-
|
|
296
|
-
function ct(t) {
|
|
297
|
-
return t.filter(ot);
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
A.getNegativePatterns = ct;
|
|
301
|
-
|
|
302
|
-
function ut(t) {
|
|
303
|
-
return t.filter(at);
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
A.getPositivePatterns = ut;
|
|
307
|
-
|
|
308
|
-
function lt(t) {
|
|
309
|
-
return t.filter(t => !ft(t));
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
A.getPatternsInsideCurrentDirectory = lt;
|
|
313
|
-
|
|
314
|
-
function ht(t) {
|
|
315
|
-
return t.filter(ft);
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
A.getPatternsOutsideCurrentDirectory = ht;
|
|
319
|
-
|
|
320
|
-
function ft(t) {
|
|
321
|
-
return t.startsWith("..") || t.startsWith("./..");
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
A.isPatternRelatedToParentDirectory = ft;
|
|
325
|
-
|
|
326
|
-
function pt(t) {
|
|
327
|
-
return U(t, {
|
|
328
|
-
flipBackslashes: false
|
|
329
|
-
});
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
A.getBaseDirectory = pt;
|
|
333
|
-
|
|
334
|
-
function dt(t) {
|
|
335
|
-
return t.includes(z);
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
A.hasGlobStar = dt;
|
|
339
|
-
|
|
340
|
-
function _t(t) {
|
|
341
|
-
return t.endsWith("/" + z);
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
A.endsWithSlashGlobStar = _t;
|
|
345
|
-
|
|
346
|
-
function gt(t) {
|
|
347
|
-
const e = q.basename(t);
|
|
348
|
-
return _t(t) || et(e);
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
A.isAffectDepthOfReadingPattern = gt;
|
|
352
|
-
|
|
353
|
-
function mt(t) {
|
|
354
|
-
return t.reduce((t, e) => t.concat(yt(e)), []);
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
A.expandPatternsWithBraceExpansion = mt;
|
|
358
|
-
|
|
359
|
-
function yt(t) {
|
|
360
|
-
const e = Y.braces(t, {
|
|
361
|
-
expand: true,
|
|
362
|
-
nodupes: true,
|
|
363
|
-
keepEscaping: true
|
|
364
|
-
});
|
|
365
|
-
e.sort((t, e) => t.length - e.length);
|
|
366
|
-
return e.filter(t => t !== "");
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
A.expandBraceExpansion = yt;
|
|
370
|
-
|
|
371
|
-
function Pt(t, e) {
|
|
372
|
-
let {parts: r} = Y.scan(t, Object.assign(Object.assign({}, e), {
|
|
373
|
-
parts: true
|
|
374
|
-
}));
|
|
375
|
-
if (r.length === 0) {
|
|
376
|
-
r = [ t ];
|
|
377
|
-
}
|
|
378
|
-
if (r[0].startsWith("/")) {
|
|
379
|
-
r[0] = r[0].slice(1);
|
|
380
|
-
r.unshift("");
|
|
381
|
-
}
|
|
382
|
-
return r;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
A.getPatternParts = Pt;
|
|
386
|
-
|
|
387
|
-
function vt(t, e) {
|
|
388
|
-
return Y.makeRe(t, e);
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
A.makeRe = vt;
|
|
392
|
-
|
|
393
|
-
function bt(t, e) {
|
|
394
|
-
return t.map(t => vt(t, e));
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
A.convertPatternsToRe = bt;
|
|
398
|
-
|
|
399
|
-
function St(t, e) {
|
|
400
|
-
return e.some(e => e.test(t));
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
A.matchAny = St;
|
|
404
|
-
|
|
405
|
-
function kt(t) {
|
|
406
|
-
return t.replace(tt, "/");
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
A.removeDuplicateSlashes = kt;
|
|
410
|
-
|
|
411
|
-
function Et(t) {
|
|
412
|
-
const e = [];
|
|
413
|
-
const r = [];
|
|
414
|
-
for (const s of t) {
|
|
415
|
-
if (Ot(s)) {
|
|
416
|
-
e.push(s);
|
|
417
|
-
} else {
|
|
418
|
-
r.push(s);
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
return [ e, r ];
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
A.partitionAbsoluteAndRelative = Et;
|
|
425
|
-
|
|
426
|
-
function Ot(t) {
|
|
427
|
-
return q.isAbsolute(t);
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
A.isAbsolute = Ot;
|
|
431
|
-
|
|
432
|
-
var wt = {};
|
|
433
|
-
|
|
434
|
-
Object.defineProperty(wt, "__esModule", {
|
|
435
|
-
value: true
|
|
436
|
-
});
|
|
437
|
-
|
|
438
|
-
wt.merge = void 0;
|
|
439
|
-
|
|
440
|
-
const Dt = n;
|
|
441
|
-
|
|
442
|
-
function Tt(t) {
|
|
443
|
-
const e = Dt(t);
|
|
444
|
-
t.forEach(t => {
|
|
445
|
-
t.once("error", t => e.emit("error", t));
|
|
446
|
-
});
|
|
447
|
-
e.once("close", () => Mt(t));
|
|
448
|
-
e.once("end", () => Mt(t));
|
|
449
|
-
return e;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
wt.merge = Tt;
|
|
453
|
-
|
|
454
|
-
function Mt(t) {
|
|
455
|
-
t.forEach(t => t.emit("close"));
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
var Ft = {};
|
|
459
|
-
|
|
460
|
-
Object.defineProperty(Ft, "__esModule", {
|
|
461
|
-
value: true
|
|
462
|
-
});
|
|
463
|
-
|
|
464
|
-
Ft.isEmpty = Ft.isString = void 0;
|
|
465
|
-
|
|
466
|
-
function xt(t) {
|
|
467
|
-
return typeof t === "string";
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
Ft.isString = xt;
|
|
471
|
-
|
|
472
|
-
function jt(t) {
|
|
473
|
-
return t === "";
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
Ft.isEmpty = jt;
|
|
477
|
-
|
|
478
|
-
Object.defineProperty(l, "__esModule", {
|
|
479
|
-
value: true
|
|
480
|
-
});
|
|
481
|
-
|
|
482
|
-
l.string = l.stream = l.pattern = l.path = l.fs = l.errno = l.array = void 0;
|
|
483
|
-
|
|
484
|
-
const Rt = h;
|
|
485
|
-
|
|
486
|
-
l.array = Rt;
|
|
487
|
-
|
|
488
|
-
const At = d;
|
|
489
|
-
|
|
490
|
-
l.errno = At;
|
|
491
|
-
|
|
492
|
-
const Lt = g;
|
|
493
|
-
|
|
494
|
-
l.fs = Lt;
|
|
495
|
-
|
|
496
|
-
const Bt = y;
|
|
497
|
-
|
|
498
|
-
l.path = Bt;
|
|
499
|
-
|
|
500
|
-
const Nt = A;
|
|
501
|
-
|
|
502
|
-
l.pattern = Nt;
|
|
503
|
-
|
|
504
|
-
const Vt = wt;
|
|
505
|
-
|
|
506
|
-
l.stream = Vt;
|
|
507
|
-
|
|
508
|
-
const Wt = Ft;
|
|
509
|
-
|
|
510
|
-
l.string = Wt;
|
|
511
|
-
|
|
512
|
-
Object.defineProperty(u, "__esModule", {
|
|
513
|
-
value: true
|
|
514
|
-
});
|
|
515
|
-
|
|
516
|
-
u.convertPatternGroupToTask = u.convertPatternGroupsToTasks = u.groupPatternsByBaseDirectory = u.getNegativePatternsAsPositive = u.getPositivePatterns = u.convertPatternsToTasks = u.generate = void 0;
|
|
517
|
-
|
|
518
|
-
const It = l;
|
|
519
|
-
|
|
520
|
-
function Ct(t, e) {
|
|
521
|
-
const r = Gt(t, e);
|
|
522
|
-
const s = Gt(e.ignore, e);
|
|
523
|
-
const n = qt(r);
|
|
524
|
-
const i = Ut(r, s);
|
|
525
|
-
const o = n.filter(t => It.pattern.isStaticPattern(t, e));
|
|
526
|
-
const a = n.filter(t => It.pattern.isDynamicPattern(t, e));
|
|
527
|
-
const c = $t(o, i, false);
|
|
528
|
-
const u = $t(a, i, true);
|
|
529
|
-
return c.concat(u);
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
u.generate = Ct;
|
|
533
|
-
|
|
534
|
-
function Gt(t, e) {
|
|
535
|
-
let r = t;
|
|
536
|
-
if (e.braceExpansion) {
|
|
537
|
-
r = It.pattern.expandPatternsWithBraceExpansion(r);
|
|
538
|
-
}
|
|
539
|
-
if (e.baseNameMatch) {
|
|
540
|
-
r = r.map(t => t.includes("/") ? t : `**/${t}`);
|
|
541
|
-
}
|
|
542
|
-
return r.map(t => It.pattern.removeDuplicateSlashes(t));
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
function $t(t, e, r) {
|
|
546
|
-
const s = [];
|
|
547
|
-
const n = It.pattern.getPatternsOutsideCurrentDirectory(t);
|
|
548
|
-
const i = It.pattern.getPatternsInsideCurrentDirectory(t);
|
|
549
|
-
const o = Yt(n);
|
|
550
|
-
const a = Yt(i);
|
|
551
|
-
s.push(...zt(o, e, r));
|
|
552
|
-
if ("." in a) {
|
|
553
|
-
s.push(Ht(".", i, e, r));
|
|
554
|
-
} else {
|
|
555
|
-
s.push(...zt(a, e, r));
|
|
556
|
-
}
|
|
557
|
-
return s;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
u.convertPatternsToTasks = $t;
|
|
561
|
-
|
|
562
|
-
function qt(t) {
|
|
563
|
-
return It.pattern.getPositivePatterns(t);
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
u.getPositivePatterns = qt;
|
|
567
|
-
|
|
568
|
-
function Ut(t, e) {
|
|
569
|
-
const r = It.pattern.getNegativePatterns(t).concat(e);
|
|
570
|
-
const s = r.map(It.pattern.convertToPositivePattern);
|
|
571
|
-
return s;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
u.getNegativePatternsAsPositive = Ut;
|
|
575
|
-
|
|
576
|
-
function Yt(t) {
|
|
577
|
-
const e = {};
|
|
578
|
-
return t.reduce((t, e) => {
|
|
579
|
-
const r = It.pattern.getBaseDirectory(e);
|
|
580
|
-
if (r in t) {
|
|
581
|
-
t[r].push(e);
|
|
582
|
-
} else {
|
|
583
|
-
t[r] = [ e ];
|
|
584
|
-
}
|
|
585
|
-
return t;
|
|
586
|
-
}, e);
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
u.groupPatternsByBaseDirectory = Yt;
|
|
590
|
-
|
|
591
|
-
function zt(t, e, r) {
|
|
592
|
-
return Object.keys(t).map(s => Ht(s, t[s], e, r));
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
u.convertPatternGroupsToTasks = zt;
|
|
596
|
-
|
|
597
|
-
function Ht(t, e, r, s) {
|
|
598
|
-
return {
|
|
599
|
-
dynamic: s,
|
|
600
|
-
positive: e,
|
|
601
|
-
negative: r,
|
|
602
|
-
base: t,
|
|
603
|
-
patterns: [].concat(e, r.map(It.pattern.convertToNegativePattern))
|
|
604
|
-
};
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
u.convertPatternGroupToTask = Ht;
|
|
608
|
-
|
|
609
|
-
var Jt = {};
|
|
610
|
-
|
|
611
|
-
var Kt = {};
|
|
612
|
-
|
|
613
|
-
var Qt = {};
|
|
614
|
-
|
|
615
|
-
Object.defineProperty(Qt, "__esModule", {
|
|
616
|
-
value: true
|
|
617
|
-
});
|
|
618
|
-
|
|
619
|
-
const Xt = e;
|
|
620
|
-
|
|
621
|
-
const Zt = i;
|
|
622
|
-
|
|
623
|
-
const te = l;
|
|
624
|
-
|
|
625
|
-
class Reader {
|
|
626
|
-
constructor(t) {
|
|
627
|
-
this._settings = t;
|
|
628
|
-
this._fsStatSettings = new Zt.Settings({
|
|
629
|
-
followSymbolicLink: this._settings.followSymbolicLinks,
|
|
630
|
-
fs: this._settings.fs,
|
|
631
|
-
throwErrorOnBrokenSymbolicLink: this._settings.followSymbolicLinks
|
|
632
|
-
});
|
|
633
|
-
}
|
|
634
|
-
_getFullEntryPath(t) {
|
|
635
|
-
return Xt.resolve(this._settings.cwd, t);
|
|
636
|
-
}
|
|
637
|
-
_makeEntry(t, e) {
|
|
638
|
-
const r = {
|
|
639
|
-
name: e,
|
|
640
|
-
path: e,
|
|
641
|
-
dirent: te.fs.createDirentFromStats(e, t)
|
|
642
|
-
};
|
|
643
|
-
if (this._settings.stats) {
|
|
644
|
-
r.stats = t;
|
|
645
|
-
}
|
|
646
|
-
return r;
|
|
647
|
-
}
|
|
648
|
-
_isFatalError(t) {
|
|
649
|
-
return !te.errno.isEnoentCodeError(t) && !this._settings.suppressErrors;
|
|
650
|
-
}
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
Qt.default = Reader;
|
|
654
|
-
|
|
655
|
-
var ee = {};
|
|
656
|
-
|
|
657
|
-
Object.defineProperty(ee, "__esModule", {
|
|
658
|
-
value: true
|
|
659
|
-
});
|
|
660
|
-
|
|
661
|
-
const re = a;
|
|
662
|
-
|
|
663
|
-
const se = i;
|
|
664
|
-
|
|
665
|
-
const ne = o;
|
|
666
|
-
|
|
667
|
-
const ie = Qt;
|
|
668
|
-
|
|
669
|
-
class ReaderStream extends ie.default {
|
|
670
|
-
constructor() {
|
|
671
|
-
super(...arguments);
|
|
672
|
-
this._walkStream = ne.walkStream;
|
|
673
|
-
this._stat = se.stat;
|
|
674
|
-
}
|
|
675
|
-
dynamic(t, e) {
|
|
676
|
-
return this._walkStream(t, e);
|
|
677
|
-
}
|
|
678
|
-
static(t, e) {
|
|
679
|
-
const r = t.map(this._getFullEntryPath, this);
|
|
680
|
-
const s = new re.PassThrough({
|
|
681
|
-
objectMode: true
|
|
682
|
-
});
|
|
683
|
-
s._write = (n, i, o) => this._getEntry(r[n], t[n], e).then(t => {
|
|
684
|
-
if (t !== null && e.entryFilter(t)) {
|
|
685
|
-
s.push(t);
|
|
686
|
-
}
|
|
687
|
-
if (n === r.length - 1) {
|
|
688
|
-
s.end();
|
|
689
|
-
}
|
|
690
|
-
o();
|
|
691
|
-
}).catch(o);
|
|
692
|
-
for (let t = 0; t < r.length; t++) {
|
|
693
|
-
s.write(t);
|
|
694
|
-
}
|
|
695
|
-
return s;
|
|
696
|
-
}
|
|
697
|
-
_getEntry(t, e, r) {
|
|
698
|
-
return this._getStat(t).then(t => this._makeEntry(t, e)).catch(t => {
|
|
699
|
-
if (r.errorFilter(t)) {
|
|
700
|
-
return null;
|
|
701
|
-
}
|
|
702
|
-
throw t;
|
|
703
|
-
});
|
|
704
|
-
}
|
|
705
|
-
_getStat(t) {
|
|
706
|
-
return new Promise((e, r) => {
|
|
707
|
-
this._stat(t, this._fsStatSettings, (t, s) => t === null ? e(s) : r(t));
|
|
708
|
-
});
|
|
709
|
-
}
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
ee.default = ReaderStream;
|
|
713
|
-
|
|
714
|
-
Object.defineProperty(Kt, "__esModule", {
|
|
715
|
-
value: true
|
|
716
|
-
});
|
|
717
|
-
|
|
718
|
-
const oe = o;
|
|
719
|
-
|
|
720
|
-
const ae = Qt;
|
|
721
|
-
|
|
722
|
-
const ce = ee;
|
|
723
|
-
|
|
724
|
-
class ReaderAsync extends ae.default {
|
|
725
|
-
constructor() {
|
|
726
|
-
super(...arguments);
|
|
727
|
-
this._walkAsync = oe.walk;
|
|
728
|
-
this._readerStream = new ce.default(this._settings);
|
|
729
|
-
}
|
|
730
|
-
dynamic(t, e) {
|
|
731
|
-
return new Promise((r, s) => {
|
|
732
|
-
this._walkAsync(t, e, (t, e) => {
|
|
733
|
-
if (t === null) {
|
|
734
|
-
r(e);
|
|
735
|
-
} else {
|
|
736
|
-
s(t);
|
|
737
|
-
}
|
|
738
|
-
});
|
|
739
|
-
});
|
|
740
|
-
}
|
|
741
|
-
async static(t, e) {
|
|
742
|
-
const r = [];
|
|
743
|
-
const s = this._readerStream.static(t, e);
|
|
744
|
-
return new Promise((t, e) => {
|
|
745
|
-
s.once("error", e);
|
|
746
|
-
s.on("data", t => r.push(t));
|
|
747
|
-
s.once("end", () => t(r));
|
|
748
|
-
});
|
|
749
|
-
}
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
Kt.default = ReaderAsync;
|
|
753
|
-
|
|
754
|
-
var ue = {};
|
|
755
|
-
|
|
756
|
-
var le = {};
|
|
757
|
-
|
|
758
|
-
var he = {};
|
|
759
|
-
|
|
760
|
-
var fe = {};
|
|
761
|
-
|
|
762
|
-
Object.defineProperty(fe, "__esModule", {
|
|
763
|
-
value: true
|
|
764
|
-
});
|
|
765
|
-
|
|
766
|
-
const pe = l;
|
|
767
|
-
|
|
768
|
-
class Matcher {
|
|
769
|
-
constructor(t, e, r) {
|
|
770
|
-
this._patterns = t;
|
|
771
|
-
this._settings = e;
|
|
772
|
-
this._micromatchOptions = r;
|
|
773
|
-
this._storage = [];
|
|
774
|
-
this._fillStorage();
|
|
775
|
-
}
|
|
776
|
-
_fillStorage() {
|
|
777
|
-
for (const t of this._patterns) {
|
|
778
|
-
const e = this._getPatternSegments(t);
|
|
779
|
-
const r = this._splitSegmentsIntoSections(e);
|
|
780
|
-
this._storage.push({
|
|
781
|
-
complete: r.length <= 1,
|
|
782
|
-
pattern: t,
|
|
783
|
-
segments: e,
|
|
784
|
-
sections: r
|
|
785
|
-
});
|
|
786
|
-
}
|
|
787
|
-
}
|
|
788
|
-
_getPatternSegments(t) {
|
|
789
|
-
const e = pe.pattern.getPatternParts(t, this._micromatchOptions);
|
|
790
|
-
return e.map(t => {
|
|
791
|
-
const e = pe.pattern.isDynamicPattern(t, this._settings);
|
|
792
|
-
if (!e) {
|
|
793
|
-
return {
|
|
794
|
-
dynamic: false,
|
|
795
|
-
pattern: t
|
|
796
|
-
};
|
|
797
|
-
}
|
|
798
|
-
return {
|
|
799
|
-
dynamic: true,
|
|
800
|
-
pattern: t,
|
|
801
|
-
patternRe: pe.pattern.makeRe(t, this._micromatchOptions)
|
|
802
|
-
};
|
|
803
|
-
});
|
|
804
|
-
}
|
|
805
|
-
_splitSegmentsIntoSections(t) {
|
|
806
|
-
return pe.array.splitWhen(t, t => t.dynamic && pe.pattern.hasGlobStar(t.pattern));
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
fe.default = Matcher;
|
|
811
|
-
|
|
812
|
-
Object.defineProperty(he, "__esModule", {
|
|
813
|
-
value: true
|
|
814
|
-
});
|
|
815
|
-
|
|
816
|
-
const de = fe;
|
|
817
|
-
|
|
818
|
-
class PartialMatcher extends de.default {
|
|
819
|
-
match(t) {
|
|
820
|
-
const e = t.split("/");
|
|
821
|
-
const r = e.length;
|
|
822
|
-
const s = this._storage.filter(t => !t.complete || t.segments.length > r);
|
|
823
|
-
for (const t of s) {
|
|
824
|
-
const s = t.sections[0];
|
|
825
|
-
if (!t.complete && r > s.length) {
|
|
826
|
-
return true;
|
|
827
|
-
}
|
|
828
|
-
const n = e.every((e, r) => {
|
|
829
|
-
const s = t.segments[r];
|
|
830
|
-
if (s.dynamic && s.patternRe.test(e)) {
|
|
831
|
-
return true;
|
|
832
|
-
}
|
|
833
|
-
if (!s.dynamic && s.pattern === e) {
|
|
834
|
-
return true;
|
|
835
|
-
}
|
|
836
|
-
return false;
|
|
837
|
-
});
|
|
838
|
-
if (n) {
|
|
839
|
-
return true;
|
|
840
|
-
}
|
|
841
|
-
}
|
|
842
|
-
return false;
|
|
843
|
-
}
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
he.default = PartialMatcher;
|
|
847
|
-
|
|
848
|
-
Object.defineProperty(le, "__esModule", {
|
|
849
|
-
value: true
|
|
850
|
-
});
|
|
851
|
-
|
|
852
|
-
const _e = l;
|
|
853
|
-
|
|
854
|
-
const ge = he;
|
|
855
|
-
|
|
856
|
-
class DeepFilter {
|
|
857
|
-
constructor(t, e) {
|
|
858
|
-
this._settings = t;
|
|
859
|
-
this._micromatchOptions = e;
|
|
860
|
-
}
|
|
861
|
-
getFilter(t, e, r) {
|
|
862
|
-
const s = this._getMatcher(e);
|
|
863
|
-
const n = this._getNegativePatternsRe(r);
|
|
864
|
-
return e => this._filter(t, e, s, n);
|
|
865
|
-
}
|
|
866
|
-
_getMatcher(t) {
|
|
867
|
-
return new ge.default(t, this._settings, this._micromatchOptions);
|
|
868
|
-
}
|
|
869
|
-
_getNegativePatternsRe(t) {
|
|
870
|
-
const e = t.filter(_e.pattern.isAffectDepthOfReadingPattern);
|
|
871
|
-
return _e.pattern.convertPatternsToRe(e, this._micromatchOptions);
|
|
872
|
-
}
|
|
873
|
-
_filter(t, e, r, s) {
|
|
874
|
-
if (this._isSkippedByDeep(t, e.path)) {
|
|
875
|
-
return false;
|
|
876
|
-
}
|
|
877
|
-
if (this._isSkippedSymbolicLink(e)) {
|
|
878
|
-
return false;
|
|
879
|
-
}
|
|
880
|
-
const n = _e.path.removeLeadingDotSegment(e.path);
|
|
881
|
-
if (this._isSkippedByPositivePatterns(n, r)) {
|
|
882
|
-
return false;
|
|
883
|
-
}
|
|
884
|
-
return this._isSkippedByNegativePatterns(n, s);
|
|
885
|
-
}
|
|
886
|
-
_isSkippedByDeep(t, e) {
|
|
887
|
-
if (this._settings.deep === Infinity) {
|
|
888
|
-
return false;
|
|
889
|
-
}
|
|
890
|
-
return this._getEntryLevel(t, e) >= this._settings.deep;
|
|
891
|
-
}
|
|
892
|
-
_getEntryLevel(t, e) {
|
|
893
|
-
const r = e.split("/").length;
|
|
894
|
-
if (t === "") {
|
|
895
|
-
return r;
|
|
896
|
-
}
|
|
897
|
-
const s = t.split("/").length;
|
|
898
|
-
return r - s;
|
|
899
|
-
}
|
|
900
|
-
_isSkippedSymbolicLink(t) {
|
|
901
|
-
return !this._settings.followSymbolicLinks && t.dirent.isSymbolicLink();
|
|
902
|
-
}
|
|
903
|
-
_isSkippedByPositivePatterns(t, e) {
|
|
904
|
-
return !this._settings.baseNameMatch && !e.match(t);
|
|
905
|
-
}
|
|
906
|
-
_isSkippedByNegativePatterns(t, e) {
|
|
907
|
-
return !_e.pattern.matchAny(t, e);
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
le.default = DeepFilter;
|
|
912
|
-
|
|
913
|
-
var me = {};
|
|
914
|
-
|
|
915
|
-
Object.defineProperty(me, "__esModule", {
|
|
916
|
-
value: true
|
|
917
|
-
});
|
|
918
|
-
|
|
919
|
-
const ye = l;
|
|
920
|
-
|
|
921
|
-
class EntryFilter {
|
|
922
|
-
constructor(t, e) {
|
|
923
|
-
this._settings = t;
|
|
924
|
-
this._micromatchOptions = e;
|
|
925
|
-
this.index = new Map;
|
|
926
|
-
}
|
|
927
|
-
getFilter(t, e) {
|
|
928
|
-
const [r, s] = ye.pattern.partitionAbsoluteAndRelative(e);
|
|
929
|
-
const n = {
|
|
930
|
-
positive: {
|
|
931
|
-
all: ye.pattern.convertPatternsToRe(t, this._micromatchOptions)
|
|
932
|
-
},
|
|
933
|
-
negative: {
|
|
934
|
-
absolute: ye.pattern.convertPatternsToRe(r, Object.assign(Object.assign({}, this._micromatchOptions), {
|
|
935
|
-
dot: true
|
|
936
|
-
})),
|
|
937
|
-
relative: ye.pattern.convertPatternsToRe(s, Object.assign(Object.assign({}, this._micromatchOptions), {
|
|
938
|
-
dot: true
|
|
939
|
-
}))
|
|
940
|
-
}
|
|
941
|
-
};
|
|
942
|
-
return t => this._filter(t, n);
|
|
943
|
-
}
|
|
944
|
-
_filter(t, e) {
|
|
945
|
-
const r = ye.path.removeLeadingDotSegment(t.path);
|
|
946
|
-
if (this._settings.unique && this._isDuplicateEntry(r)) {
|
|
947
|
-
return false;
|
|
948
|
-
}
|
|
949
|
-
if (this._onlyFileFilter(t) || this._onlyDirectoryFilter(t)) {
|
|
950
|
-
return false;
|
|
951
|
-
}
|
|
952
|
-
const s = this._isMatchToPatternsSet(r, e, t.dirent.isDirectory());
|
|
953
|
-
if (this._settings.unique && s) {
|
|
954
|
-
this._createIndexRecord(r);
|
|
955
|
-
}
|
|
956
|
-
return s;
|
|
957
|
-
}
|
|
958
|
-
_isDuplicateEntry(t) {
|
|
959
|
-
return this.index.has(t);
|
|
960
|
-
}
|
|
961
|
-
_createIndexRecord(t) {
|
|
962
|
-
this.index.set(t, undefined);
|
|
963
|
-
}
|
|
964
|
-
_onlyFileFilter(t) {
|
|
965
|
-
return this._settings.onlyFiles && !t.dirent.isFile();
|
|
966
|
-
}
|
|
967
|
-
_onlyDirectoryFilter(t) {
|
|
968
|
-
return this._settings.onlyDirectories && !t.dirent.isDirectory();
|
|
969
|
-
}
|
|
970
|
-
_isMatchToPatternsSet(t, e, r) {
|
|
971
|
-
const s = this._isMatchToPatterns(t, e.positive.all, r);
|
|
972
|
-
if (!s) {
|
|
973
|
-
return false;
|
|
974
|
-
}
|
|
975
|
-
const n = this._isMatchToPatterns(t, e.negative.relative, r);
|
|
976
|
-
if (n) {
|
|
977
|
-
return false;
|
|
978
|
-
}
|
|
979
|
-
const i = this._isMatchToAbsoluteNegative(t, e.negative.absolute, r);
|
|
980
|
-
if (i) {
|
|
981
|
-
return false;
|
|
982
|
-
}
|
|
983
|
-
return true;
|
|
984
|
-
}
|
|
985
|
-
_isMatchToAbsoluteNegative(t, e, r) {
|
|
986
|
-
if (e.length === 0) {
|
|
987
|
-
return false;
|
|
988
|
-
}
|
|
989
|
-
const s = ye.path.makeAbsolute(this._settings.cwd, t);
|
|
990
|
-
return this._isMatchToPatterns(s, e, r);
|
|
991
|
-
}
|
|
992
|
-
_isMatchToPatterns(t, e, r) {
|
|
993
|
-
if (e.length === 0) {
|
|
994
|
-
return false;
|
|
995
|
-
}
|
|
996
|
-
const s = ye.pattern.matchAny(t, e);
|
|
997
|
-
if (!s && r) {
|
|
998
|
-
return ye.pattern.matchAny(t + "/", e);
|
|
999
|
-
}
|
|
1000
|
-
return s;
|
|
1001
|
-
}
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
me.default = EntryFilter;
|
|
1005
|
-
|
|
1006
|
-
var Pe = {};
|
|
1007
|
-
|
|
1008
|
-
Object.defineProperty(Pe, "__esModule", {
|
|
1009
|
-
value: true
|
|
1010
|
-
});
|
|
1011
|
-
|
|
1012
|
-
const ve = l;
|
|
1013
|
-
|
|
1014
|
-
class ErrorFilter {
|
|
1015
|
-
constructor(t) {
|
|
1016
|
-
this._settings = t;
|
|
1017
|
-
}
|
|
1018
|
-
getFilter() {
|
|
1019
|
-
return t => this._isNonFatalError(t);
|
|
1020
|
-
}
|
|
1021
|
-
_isNonFatalError(t) {
|
|
1022
|
-
return ve.errno.isEnoentCodeError(t) || this._settings.suppressErrors;
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
Pe.default = ErrorFilter;
|
|
1027
|
-
|
|
1028
|
-
var be = {};
|
|
1029
|
-
|
|
1030
|
-
Object.defineProperty(be, "__esModule", {
|
|
1031
|
-
value: true
|
|
1032
|
-
});
|
|
1033
|
-
|
|
1034
|
-
const Se = l;
|
|
1035
|
-
|
|
1036
|
-
class EntryTransformer {
|
|
1037
|
-
constructor(t) {
|
|
1038
|
-
this._settings = t;
|
|
1039
|
-
}
|
|
1040
|
-
getTransformer() {
|
|
1041
|
-
return t => this._transform(t);
|
|
1042
|
-
}
|
|
1043
|
-
_transform(t) {
|
|
1044
|
-
let e = t.path;
|
|
1045
|
-
if (this._settings.absolute) {
|
|
1046
|
-
e = Se.path.makeAbsolute(this._settings.cwd, e);
|
|
1047
|
-
e = Se.path.unixify(e);
|
|
1048
|
-
}
|
|
1049
|
-
if (this._settings.markDirectories && t.dirent.isDirectory()) {
|
|
1050
|
-
e += "/";
|
|
1051
|
-
}
|
|
1052
|
-
if (!this._settings.objectMode) {
|
|
1053
|
-
return e;
|
|
1054
|
-
}
|
|
1055
|
-
return Object.assign(Object.assign({}, t), {
|
|
1056
|
-
path: e
|
|
1057
|
-
});
|
|
1058
|
-
}
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
be.default = EntryTransformer;
|
|
1062
|
-
|
|
1063
|
-
Object.defineProperty(ue, "__esModule", {
|
|
1064
|
-
value: true
|
|
1065
|
-
});
|
|
1066
|
-
|
|
1067
|
-
const ke = e;
|
|
1068
|
-
|
|
1069
|
-
const Ee = le;
|
|
1070
|
-
|
|
1071
|
-
const Oe = me;
|
|
1072
|
-
|
|
1073
|
-
const we = Pe;
|
|
1074
|
-
|
|
1075
|
-
const De = be;
|
|
1076
|
-
|
|
1077
|
-
class Provider {
|
|
1078
|
-
constructor(t) {
|
|
1079
|
-
this._settings = t;
|
|
1080
|
-
this.errorFilter = new we.default(this._settings);
|
|
1081
|
-
this.entryFilter = new Oe.default(this._settings, this._getMicromatchOptions());
|
|
1082
|
-
this.deepFilter = new Ee.default(this._settings, this._getMicromatchOptions());
|
|
1083
|
-
this.entryTransformer = new De.default(this._settings);
|
|
1084
|
-
}
|
|
1085
|
-
_getRootDirectory(t) {
|
|
1086
|
-
return ke.resolve(this._settings.cwd, t.base);
|
|
1087
|
-
}
|
|
1088
|
-
_getReaderOptions(t) {
|
|
1089
|
-
const e = t.base === "." ? "" : t.base;
|
|
1090
|
-
return {
|
|
1091
|
-
basePath: e,
|
|
1092
|
-
pathSegmentSeparator: "/",
|
|
1093
|
-
concurrency: this._settings.concurrency,
|
|
1094
|
-
deepFilter: this.deepFilter.getFilter(e, t.positive, t.negative),
|
|
1095
|
-
entryFilter: this.entryFilter.getFilter(t.positive, t.negative),
|
|
1096
|
-
errorFilter: this.errorFilter.getFilter(),
|
|
1097
|
-
followSymbolicLinks: this._settings.followSymbolicLinks,
|
|
1098
|
-
fs: this._settings.fs,
|
|
1099
|
-
stats: this._settings.stats,
|
|
1100
|
-
throwErrorOnBrokenSymbolicLink: this._settings.throwErrorOnBrokenSymbolicLink,
|
|
1101
|
-
transform: this.entryTransformer.getTransformer()
|
|
1102
|
-
};
|
|
1103
|
-
}
|
|
1104
|
-
_getMicromatchOptions() {
|
|
1105
|
-
return {
|
|
1106
|
-
dot: this._settings.dot,
|
|
1107
|
-
matchBase: this._settings.baseNameMatch,
|
|
1108
|
-
nobrace: !this._settings.braceExpansion,
|
|
1109
|
-
nocase: !this._settings.caseSensitiveMatch,
|
|
1110
|
-
noext: !this._settings.extglob,
|
|
1111
|
-
noglobstar: !this._settings.globstar,
|
|
1112
|
-
posix: true,
|
|
1113
|
-
strictSlashes: false
|
|
1114
|
-
};
|
|
1115
|
-
}
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
ue.default = Provider;
|
|
1119
|
-
|
|
1120
|
-
Object.defineProperty(Jt, "__esModule", {
|
|
1121
|
-
value: true
|
|
1122
|
-
});
|
|
1123
|
-
|
|
1124
|
-
const Te = Kt;
|
|
1125
|
-
|
|
1126
|
-
const Me = ue;
|
|
1127
|
-
|
|
1128
|
-
class ProviderAsync extends Me.default {
|
|
1129
|
-
constructor() {
|
|
1130
|
-
super(...arguments);
|
|
1131
|
-
this._reader = new Te.default(this._settings);
|
|
1132
|
-
}
|
|
1133
|
-
async read(t) {
|
|
1134
|
-
const e = this._getRootDirectory(t);
|
|
1135
|
-
const r = this._getReaderOptions(t);
|
|
1136
|
-
const s = await this.api(e, t, r);
|
|
1137
|
-
return s.map(t => r.transform(t));
|
|
1138
|
-
}
|
|
1139
|
-
api(t, e, r) {
|
|
1140
|
-
if (e.dynamic) {
|
|
1141
|
-
return this._reader.dynamic(t, r);
|
|
1142
|
-
}
|
|
1143
|
-
return this._reader.static(e.patterns, r);
|
|
1144
|
-
}
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
Jt.default = ProviderAsync;
|
|
1148
|
-
|
|
1149
|
-
var Fe = {};
|
|
1150
|
-
|
|
1151
|
-
Object.defineProperty(Fe, "__esModule", {
|
|
1152
|
-
value: true
|
|
1153
|
-
});
|
|
1154
|
-
|
|
1155
|
-
const xe = a;
|
|
1156
|
-
|
|
1157
|
-
const je = ee;
|
|
1158
|
-
|
|
1159
|
-
const Re = ue;
|
|
1160
|
-
|
|
1161
|
-
class ProviderStream extends Re.default {
|
|
1162
|
-
constructor() {
|
|
1163
|
-
super(...arguments);
|
|
1164
|
-
this._reader = new je.default(this._settings);
|
|
1165
|
-
}
|
|
1166
|
-
read(t) {
|
|
1167
|
-
const e = this._getRootDirectory(t);
|
|
1168
|
-
const r = this._getReaderOptions(t);
|
|
1169
|
-
const s = this.api(e, t, r);
|
|
1170
|
-
const n = new xe.Readable({
|
|
1171
|
-
objectMode: true,
|
|
1172
|
-
read: () => {}
|
|
1173
|
-
});
|
|
1174
|
-
s.once("error", t => n.emit("error", t)).on("data", t => n.emit("data", r.transform(t))).once("end", () => n.emit("end"));
|
|
1175
|
-
n.once("close", () => s.destroy());
|
|
1176
|
-
return n;
|
|
1177
|
-
}
|
|
1178
|
-
api(t, e, r) {
|
|
1179
|
-
if (e.dynamic) {
|
|
1180
|
-
return this._reader.dynamic(t, r);
|
|
1181
|
-
}
|
|
1182
|
-
return this._reader.static(e.patterns, r);
|
|
1183
|
-
}
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
Fe.default = ProviderStream;
|
|
1187
|
-
|
|
1188
|
-
var Ae = {};
|
|
1189
|
-
|
|
1190
|
-
var Le = {};
|
|
1191
|
-
|
|
1192
|
-
Object.defineProperty(Le, "__esModule", {
|
|
1193
|
-
value: true
|
|
1194
|
-
});
|
|
1195
|
-
|
|
1196
|
-
const Be = i;
|
|
1197
|
-
|
|
1198
|
-
const Ne = o;
|
|
1199
|
-
|
|
1200
|
-
const Ve = Qt;
|
|
1201
|
-
|
|
1202
|
-
class ReaderSync extends Ve.default {
|
|
1203
|
-
constructor() {
|
|
1204
|
-
super(...arguments);
|
|
1205
|
-
this._walkSync = Ne.walkSync;
|
|
1206
|
-
this._statSync = Be.statSync;
|
|
1207
|
-
}
|
|
1208
|
-
dynamic(t, e) {
|
|
1209
|
-
return this._walkSync(t, e);
|
|
1210
|
-
}
|
|
1211
|
-
static(t, e) {
|
|
1212
|
-
const r = [];
|
|
1213
|
-
for (const s of t) {
|
|
1214
|
-
const t = this._getFullEntryPath(s);
|
|
1215
|
-
const n = this._getEntry(t, s, e);
|
|
1216
|
-
if (n === null || !e.entryFilter(n)) {
|
|
1217
|
-
continue;
|
|
1218
|
-
}
|
|
1219
|
-
r.push(n);
|
|
1220
|
-
}
|
|
1221
|
-
return r;
|
|
1222
|
-
}
|
|
1223
|
-
_getEntry(t, e, r) {
|
|
1224
|
-
try {
|
|
1225
|
-
const r = this._getStat(t);
|
|
1226
|
-
return this._makeEntry(r, e);
|
|
1227
|
-
} catch (t) {
|
|
1228
|
-
if (r.errorFilter(t)) {
|
|
1229
|
-
return null;
|
|
1230
|
-
}
|
|
1231
|
-
throw t;
|
|
1232
|
-
}
|
|
1233
|
-
}
|
|
1234
|
-
_getStat(t) {
|
|
1235
|
-
return this._statSync(t, this._fsStatSettings);
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
Le.default = ReaderSync;
|
|
1240
|
-
|
|
1241
|
-
Object.defineProperty(Ae, "__esModule", {
|
|
1242
|
-
value: true
|
|
1243
|
-
});
|
|
1244
|
-
|
|
1245
|
-
const We = Le;
|
|
1246
|
-
|
|
1247
|
-
const Ie = ue;
|
|
1248
|
-
|
|
1249
|
-
class ProviderSync extends Ie.default {
|
|
1250
|
-
constructor() {
|
|
1251
|
-
super(...arguments);
|
|
1252
|
-
this._reader = new We.default(this._settings);
|
|
1253
|
-
}
|
|
1254
|
-
read(t) {
|
|
1255
|
-
const e = this._getRootDirectory(t);
|
|
1256
|
-
const r = this._getReaderOptions(t);
|
|
1257
|
-
const s = this.api(e, t, r);
|
|
1258
|
-
return s.map(r.transform);
|
|
1259
|
-
}
|
|
1260
|
-
api(t, e, r) {
|
|
1261
|
-
if (e.dynamic) {
|
|
1262
|
-
return this._reader.dynamic(t, r);
|
|
1263
|
-
}
|
|
1264
|
-
return this._reader.static(e.patterns, r);
|
|
1265
|
-
}
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
Ae.default = ProviderSync;
|
|
1269
|
-
|
|
1270
|
-
var Ce = {};
|
|
1271
|
-
|
|
1272
|
-
(function(e) {
|
|
1273
|
-
Object.defineProperty(e, "__esModule", {
|
|
1274
|
-
value: true
|
|
1275
|
-
});
|
|
1276
|
-
e.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
|
|
1277
|
-
const r = c;
|
|
1278
|
-
const s = t;
|
|
1279
|
-
const n = Math.max(s.cpus().length, 1);
|
|
1280
|
-
e.DEFAULT_FILE_SYSTEM_ADAPTER = {
|
|
1281
|
-
lstat: r.lstat,
|
|
1282
|
-
lstatSync: r.lstatSync,
|
|
1283
|
-
stat: r.stat,
|
|
1284
|
-
statSync: r.statSync,
|
|
1285
|
-
readdir: r.readdir,
|
|
1286
|
-
readdirSync: r.readdirSync
|
|
1287
|
-
};
|
|
1288
|
-
class Settings {
|
|
1289
|
-
constructor(t = {}) {
|
|
1290
|
-
this._options = t;
|
|
1291
|
-
this.absolute = this._getValue(this._options.absolute, false);
|
|
1292
|
-
this.baseNameMatch = this._getValue(this._options.baseNameMatch, false);
|
|
1293
|
-
this.braceExpansion = this._getValue(this._options.braceExpansion, true);
|
|
1294
|
-
this.caseSensitiveMatch = this._getValue(this._options.caseSensitiveMatch, true);
|
|
1295
|
-
this.concurrency = this._getValue(this._options.concurrency, n);
|
|
1296
|
-
this.cwd = this._getValue(this._options.cwd, process.cwd());
|
|
1297
|
-
this.deep = this._getValue(this._options.deep, Infinity);
|
|
1298
|
-
this.dot = this._getValue(this._options.dot, false);
|
|
1299
|
-
this.extglob = this._getValue(this._options.extglob, true);
|
|
1300
|
-
this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, true);
|
|
1301
|
-
this.fs = this._getFileSystemMethods(this._options.fs);
|
|
1302
|
-
this.globstar = this._getValue(this._options.globstar, true);
|
|
1303
|
-
this.ignore = this._getValue(this._options.ignore, []);
|
|
1304
|
-
this.markDirectories = this._getValue(this._options.markDirectories, false);
|
|
1305
|
-
this.objectMode = this._getValue(this._options.objectMode, false);
|
|
1306
|
-
this.onlyDirectories = this._getValue(this._options.onlyDirectories, false);
|
|
1307
|
-
this.onlyFiles = this._getValue(this._options.onlyFiles, true);
|
|
1308
|
-
this.stats = this._getValue(this._options.stats, false);
|
|
1309
|
-
this.suppressErrors = this._getValue(this._options.suppressErrors, false);
|
|
1310
|
-
this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, false);
|
|
1311
|
-
this.unique = this._getValue(this._options.unique, true);
|
|
1312
|
-
if (this.onlyDirectories) {
|
|
1313
|
-
this.onlyFiles = false;
|
|
1314
|
-
}
|
|
1315
|
-
if (this.stats) {
|
|
1316
|
-
this.objectMode = true;
|
|
1317
|
-
}
|
|
1318
|
-
this.ignore = [].concat(this.ignore);
|
|
1319
|
-
}
|
|
1320
|
-
_getValue(t, e) {
|
|
1321
|
-
return t === undefined ? e : t;
|
|
1322
|
-
}
|
|
1323
|
-
_getFileSystemMethods(t = {}) {
|
|
1324
|
-
return Object.assign(Object.assign({}, e.DEFAULT_FILE_SYSTEM_ADAPTER), t);
|
|
1325
|
-
}
|
|
1326
|
-
}
|
|
1327
|
-
e.default = Settings;
|
|
1328
|
-
})(Ce);
|
|
1329
|
-
|
|
1330
|
-
const Ge = u;
|
|
1331
|
-
|
|
1332
|
-
const $e = Jt;
|
|
1333
|
-
|
|
1334
|
-
const qe = Fe;
|
|
1335
|
-
|
|
1336
|
-
const Ue = Ae;
|
|
1337
|
-
|
|
1338
|
-
const Ye = Ce;
|
|
1339
|
-
|
|
1340
|
-
const ze = l;
|
|
1341
|
-
|
|
1342
|
-
async function He(t, e) {
|
|
1343
|
-
Ke(t);
|
|
1344
|
-
const r = Je(t, $e.default, e);
|
|
1345
|
-
const s = await Promise.all(r);
|
|
1346
|
-
return ze.array.flatten(s);
|
|
1347
|
-
}
|
|
1348
|
-
|
|
1349
|
-
(function(t) {
|
|
1350
|
-
t.glob = t;
|
|
1351
|
-
t.globSync = e;
|
|
1352
|
-
t.globStream = r;
|
|
1353
|
-
t.async = t;
|
|
1354
|
-
function e(t, e) {
|
|
1355
|
-
Ke(t);
|
|
1356
|
-
const r = Je(t, Ue.default, e);
|
|
1357
|
-
return ze.array.flatten(r);
|
|
1358
|
-
}
|
|
1359
|
-
t.sync = e;
|
|
1360
|
-
function r(t, e) {
|
|
1361
|
-
Ke(t);
|
|
1362
|
-
const r = Je(t, qe.default, e);
|
|
1363
|
-
return ze.stream.merge(r);
|
|
1364
|
-
}
|
|
1365
|
-
t.stream = r;
|
|
1366
|
-
function s(t, e) {
|
|
1367
|
-
Ke(t);
|
|
1368
|
-
const r = [].concat(t);
|
|
1369
|
-
const s = new Ye.default(e);
|
|
1370
|
-
return Ge.generate(r, s);
|
|
1371
|
-
}
|
|
1372
|
-
t.generateTasks = s;
|
|
1373
|
-
function n(t, e) {
|
|
1374
|
-
Ke(t);
|
|
1375
|
-
const r = new Ye.default(e);
|
|
1376
|
-
return ze.pattern.isDynamicPattern(t, r);
|
|
1377
|
-
}
|
|
1378
|
-
t.isDynamicPattern = n;
|
|
1379
|
-
function i(t) {
|
|
1380
|
-
Ke(t);
|
|
1381
|
-
return ze.path.escape(t);
|
|
1382
|
-
}
|
|
1383
|
-
t.escapePath = i;
|
|
1384
|
-
function o(t) {
|
|
1385
|
-
Ke(t);
|
|
1386
|
-
return ze.path.convertPathToPattern(t);
|
|
1387
|
-
}
|
|
1388
|
-
t.convertPathToPattern = o;
|
|
1389
|
-
(function(t) {
|
|
1390
|
-
function e(t) {
|
|
1391
|
-
Ke(t);
|
|
1392
|
-
return ze.path.escapePosixPath(t);
|
|
1393
|
-
}
|
|
1394
|
-
t.escapePath = e;
|
|
1395
|
-
function r(t) {
|
|
1396
|
-
Ke(t);
|
|
1397
|
-
return ze.path.convertPosixPathToPattern(t);
|
|
1398
|
-
}
|
|
1399
|
-
t.convertPathToPattern = r;
|
|
1400
|
-
})(t.posix || (t.posix = {}));
|
|
1401
|
-
(function(t) {
|
|
1402
|
-
function e(t) {
|
|
1403
|
-
Ke(t);
|
|
1404
|
-
return ze.path.escapeWindowsPath(t);
|
|
1405
|
-
}
|
|
1406
|
-
t.escapePath = e;
|
|
1407
|
-
function r(t) {
|
|
1408
|
-
Ke(t);
|
|
1409
|
-
return ze.path.convertWindowsPathToPattern(t);
|
|
1410
|
-
}
|
|
1411
|
-
t.convertPathToPattern = r;
|
|
1412
|
-
})(t.win32 || (t.win32 = {}));
|
|
1413
|
-
})(He || (He = {}));
|
|
1414
|
-
|
|
1415
|
-
function Je(t, e, r) {
|
|
1416
|
-
const s = [].concat(t);
|
|
1417
|
-
const n = new Ye.default(r);
|
|
1418
|
-
const i = Ge.generate(s, n);
|
|
1419
|
-
const o = new e(n);
|
|
1420
|
-
return i.map(o.read, o);
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1423
|
-
function Ke(t) {
|
|
1424
|
-
const e = [].concat(t);
|
|
1425
|
-
const r = e.every(t => ze.string.isString(t) && !ze.string.isEmpty(t));
|
|
1426
|
-
if (!r) {
|
|
1427
|
-
throw new TypeError("Patterns must be a string (non empty) or an array of strings");
|
|
1428
|
-
}
|
|
1429
|
-
}
|
|
1430
|
-
|
|
1431
|
-
var Qe = He;
|
|
1432
|
-
|
|
1433
|
-
export { Qe as o };
|
|
6
|
+
export { e as _ };
|