@hyperfrontend/project-scope 0.2.0 → 0.2.2
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/CHANGELOG.md +13 -15
- package/README.md +3 -4
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/array/index.cjs.js +7 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/array/index.esm.js +5 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/console/index.cjs.js +13 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/console/index.esm.js +8 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/date/index.cjs.js +10 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/date/index.esm.js +8 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/error/index.cjs.js +6 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/error/index.esm.js +5 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/json/index.cjs.js +7 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/json/index.esm.js +5 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/map/index.cjs.js +6 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/map/index.esm.js +5 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/math/index.cjs.js +9 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/math/index.esm.js +6 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/number/index.cjs.js +7 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/number/index.esm.js +7 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/object/index.cjs.js +15 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/object/index.esm.js +9 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/set/index.cjs.js +6 -0
- package/_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/set/index.esm.js +5 -0
- package/_dependencies/@hyperfrontend/logging/index.cjs.js +191 -0
- package/_dependencies/@hyperfrontend/logging/index.d.ts +151 -0
- package/_dependencies/@hyperfrontend/logging/index.esm.js +186 -0
- package/_shared/core/cache/index.cjs.js +135 -0
- package/_shared/core/cache/index.esm.js +128 -0
- package/_shared/core/errors/structured-errors/index.cjs.js +28 -0
- package/_shared/core/errors/structured-errors/index.esm.js +23 -0
- package/_shared/core/fs/stat/index.cjs.js +46 -0
- package/_shared/core/fs/stat/index.esm.js +40 -0
- package/_shared/core/path/join/index.cjs.js +13 -0
- package/_shared/core/path/join/index.esm.js +10 -0
- package/_shared/core/path/normalize/index.cjs.js +37 -0
- package/_shared/core/path/normalize/index.esm.js +31 -0
- package/_shared/core/path/resolve/index.cjs.js +47 -0
- package/_shared/core/path/resolve/index.esm.js +41 -0
- package/_shared/core/path/segments/index.cjs.js +38 -0
- package/_shared/core/path/segments/index.esm.js +31 -0
- package/_shared/core/patterns/glob/index.cjs.js +145 -0
- package/_shared/core/patterns/glob/index.esm.js +136 -0
- package/_shared/core/platform/detect/index.cjs.js +103 -0
- package/_shared/core/platform/detect/index.esm.js +95 -0
- package/_shared/core/platform/line-endings/index.cjs.js +52 -0
- package/_shared/core/platform/line-endings/index.esm.js +44 -0
- package/_shared/project/config/patterns/index.cjs.js +172 -0
- package/_shared/project/config/patterns/index.esm.js +169 -0
- package/_shared/tech/monorepo/pnpm-workspaces/index.cjs.js +33 -0
- package/_shared/tech/monorepo/pnpm-workspaces/index.esm.js +31 -0
- package/_shared/tech/shared-utils/detector-helpers/index.cjs.js +48 -0
- package/_shared/tech/shared-utils/detector-helpers/index.esm.js +43 -0
- package/_shared/vfs/types/index.cjs.js +14 -0
- package/_shared/vfs/types/index.esm.js +12 -0
- package/cli/index.cjs.js +1699 -2040
- package/cli/index.d.ts +273 -7
- package/cli/index.d.ts.map +1 -1
- package/cli/index.esm.js +1603 -1944
- package/core/encoding/index.cjs.js +88 -424
- package/core/encoding/index.d.ts +186 -3
- package/core/encoding/index.d.ts.map +1 -1
- package/core/encoding/index.esm.js +80 -415
- package/core/fs/index.cjs.js +231 -595
- package/core/fs/index.d.ts +479 -6
- package/core/fs/index.d.ts.map +1 -1
- package/core/fs/index.esm.js +221 -585
- package/core/index.cjs.js +518 -1804
- package/core/index.d.ts +486 -9
- package/core/index.d.ts.map +1 -1
- package/core/index.esm.js +501 -1784
- package/core/path/index.cjs.js +6 -235
- package/core/path/index.d.ts +306 -5
- package/core/path/index.d.ts.map +1 -1
- package/core/path/index.esm.js +4 -233
- package/core/platform/index.cjs.js +5 -226
- package/core/platform/index.d.ts +185 -3
- package/core/platform/index.d.ts.map +1 -1
- package/core/platform/index.esm.js +3 -222
- package/heuristics/dependencies/index.cjs.js +95 -509
- package/heuristics/dependencies/index.d.ts +99 -2
- package/heuristics/dependencies/index.d.ts.map +1 -1
- package/heuristics/dependencies/index.esm.js +69 -483
- package/heuristics/entry-points/index.cjs.js +93 -825
- package/heuristics/entry-points/index.d.ts +123 -2
- package/heuristics/entry-points/index.d.ts.map +1 -1
- package/heuristics/entry-points/index.esm.js +74 -806
- package/heuristics/framework/index.cjs.js +1482 -1473
- package/heuristics/framework/index.d.ts +104 -2
- package/heuristics/framework/index.d.ts.map +1 -1
- package/heuristics/framework/index.esm.js +1418 -1409
- package/heuristics/index.cjs.js +3207 -3383
- package/heuristics/index.d.ts +4 -5
- package/heuristics/index.d.ts.map +1 -1
- package/heuristics/index.esm.js +3234 -3410
- package/heuristics/project-type/index.cjs.js +1488 -1500
- package/heuristics/project-type/index.d.ts +64 -2
- package/heuristics/project-type/index.d.ts.map +1 -1
- package/heuristics/project-type/index.esm.js +1417 -1429
- package/index.cjs.js +3064 -3765
- package/index.d.ts +44 -10
- package/index.d.ts.map +1 -1
- package/index.esm.js +2923 -3612
- package/models/index.cjs.js +0 -1
- package/models/index.d.ts +20 -14
- package/models/index.d.ts.map +1 -1
- package/models/index.esm.js +0 -1
- package/nx/index.cjs.js +163 -606
- package/nx/index.d.ts +279 -4
- package/nx/index.d.ts.map +1 -1
- package/nx/index.esm.js +145 -583
- package/package.json +13 -12
- package/project/config/index.cjs.js +122 -1104
- package/project/config/index.d.ts +202 -4
- package/project/config/index.d.ts.map +1 -1
- package/project/config/index.esm.js +105 -1085
- package/project/index.cjs.js +323 -1143
- package/project/index.d.ts +4 -5
- package/project/index.d.ts.map +1 -1
- package/project/index.esm.js +302 -1119
- package/project/package/index.cjs.js +191 -483
- package/project/package/index.d.ts +280 -3
- package/project/package/index.d.ts.map +1 -1
- package/project/package/index.esm.js +178 -469
- package/project/root/index.cjs.js +107 -427
- package/project/root/index.d.ts +83 -2
- package/project/root/index.d.ts.map +1 -1
- package/project/root/index.esm.js +96 -416
- package/project/traversal/index.cjs.js +94 -645
- package/project/traversal/index.d.ts +165 -3
- package/project/traversal/index.d.ts.map +1 -1
- package/project/traversal/index.esm.js +80 -631
- package/tech/backend/index.cjs.js +221 -524
- package/tech/backend/index.d.ts +205 -8
- package/tech/backend/index.d.ts.map +1 -1
- package/tech/backend/index.esm.js +200 -503
- package/tech/build/index.cjs.js +348 -647
- package/tech/build/index.d.ts +276 -10
- package/tech/build/index.d.ts.map +1 -1
- package/tech/build/index.esm.js +326 -625
- package/tech/frontend/index.cjs.js +505 -700
- package/tech/frontend/index.d.ts +379 -15
- package/tech/frontend/index.d.ts.map +1 -1
- package/tech/frontend/index.esm.js +481 -676
- package/tech/index.cjs.js +1580 -1482
- package/tech/index.d.ts +55 -32
- package/tech/index.d.ts.map +1 -1
- package/tech/index.esm.js +1513 -1415
- package/tech/legacy/index.cjs.js +97 -474
- package/tech/legacy/index.d.ts +125 -7
- package/tech/legacy/index.d.ts.map +1 -1
- package/tech/legacy/index.esm.js +79 -456
- package/tech/linting/index.cjs.js +136 -536
- package/tech/linting/index.d.ts +129 -7
- package/tech/linting/index.d.ts.map +1 -1
- package/tech/linting/index.esm.js +116 -516
- package/tech/monorepo/index.cjs.js +244 -584
- package/tech/monorepo/index.d.ts +241 -10
- package/tech/monorepo/index.d.ts.map +1 -1
- package/tech/monorepo/index.esm.js +224 -564
- package/tech/testing/index.cjs.js +214 -582
- package/tech/testing/index.d.ts +176 -8
- package/tech/testing/index.d.ts.map +1 -1
- package/tech/testing/index.esm.js +196 -564
- package/tech/types/index.cjs.js +121 -532
- package/tech/types/index.d.ts +120 -2
- package/tech/types/index.d.ts.map +1 -1
- package/tech/types/index.esm.js +99 -510
- package/vfs/index.cjs.js +647 -1187
- package/vfs/index.d.ts +360 -6
- package/vfs/index.d.ts.map +1 -1
- package/vfs/index.esm.js +672 -1212
- package/ARCHITECTURE.md +0 -370
- package/analyze.d.ts +0 -33
- package/analyze.d.ts.map +0 -1
- package/cli/commands/analyze.d.ts +0 -20
- package/cli/commands/analyze.d.ts.map +0 -1
- package/cli/commands/config.d.ts +0 -20
- package/cli/commands/config.d.ts.map +0 -1
- package/cli/commands/deps.d.ts +0 -18
- package/cli/commands/deps.d.ts.map +0 -1
- package/cli/commands/tree.d.ts +0 -24
- package/cli/commands/tree.d.ts.map +0 -1
- package/cli/index.cjs.js.map +0 -1
- package/cli/index.esm.js.map +0 -1
- package/cli/run.d.ts +0 -25
- package/cli/run.d.ts.map +0 -1
- package/cli/types.d.ts +0 -55
- package/cli/types.d.ts.map +0 -1
- package/core/cache.d.ts +0 -157
- package/core/cache.d.ts.map +0 -1
- package/core/encoding/convert.d.ts +0 -32
- package/core/encoding/convert.d.ts.map +0 -1
- package/core/encoding/detect.d.ts +0 -86
- package/core/encoding/detect.d.ts.map +0 -1
- package/core/encoding/index.cjs.js.map +0 -1
- package/core/encoding/index.esm.js.map +0 -1
- package/core/errors/structured-errors.d.ts +0 -64
- package/core/errors/structured-errors.d.ts.map +0 -1
- package/core/fs/directory.d.ts +0 -88
- package/core/fs/directory.d.ts.map +0 -1
- package/core/fs/index.cjs.js.map +0 -1
- package/core/fs/index.esm.js.map +0 -1
- package/core/fs/read.d.ts +0 -86
- package/core/fs/read.d.ts.map +0 -1
- package/core/fs/stat.d.ts +0 -58
- package/core/fs/stat.d.ts.map +0 -1
- package/core/fs/traversal.d.ts +0 -26
- package/core/fs/traversal.d.ts.map +0 -1
- package/core/fs/write.d.ts +0 -75
- package/core/fs/write.d.ts.map +0 -1
- package/core/index.cjs.js.map +0 -1
- package/core/index.esm.js.map +0 -1
- package/core/logger.d.ts +0 -111
- package/core/logger.d.ts.map +0 -1
- package/core/path/index.cjs.js.map +0 -1
- package/core/path/index.esm.js.map +0 -1
- package/core/path/join.d.ts +0 -17
- package/core/path/join.d.ts.map +0 -1
- package/core/path/normalize.d.ts +0 -37
- package/core/path/normalize.d.ts.map +0 -1
- package/core/path/resolve.d.ts +0 -52
- package/core/path/resolve.d.ts.map +0 -1
- package/core/path/segments.d.ts +0 -59
- package/core/path/segments.d.ts.map +0 -1
- package/core/patterns/glob.d.ts +0 -46
- package/core/patterns/glob.d.ts.map +0 -1
- package/core/platform/detect.d.ts +0 -66
- package/core/platform/detect.d.ts.map +0 -1
- package/core/platform/index.cjs.js.map +0 -1
- package/core/platform/index.esm.js.map +0 -1
- package/core/platform/line-endings.d.ts +0 -48
- package/core/platform/line-endings.d.ts.map +0 -1
- package/heuristics/dependencies/analyze.d.ts +0 -77
- package/heuristics/dependencies/analyze.d.ts.map +0 -1
- package/heuristics/dependencies/index.cjs.js.map +0 -1
- package/heuristics/dependencies/index.esm.js.map +0 -1
- package/heuristics/entry-points/discover.d.ts +0 -86
- package/heuristics/entry-points/discover.d.ts.map +0 -1
- package/heuristics/entry-points/index.cjs.js.map +0 -1
- package/heuristics/entry-points/index.esm.js.map +0 -1
- package/heuristics/framework/identify.d.ts +0 -84
- package/heuristics/framework/identify.d.ts.map +0 -1
- package/heuristics/framework/index.cjs.js.map +0 -1
- package/heuristics/framework/index.esm.js.map +0 -1
- package/heuristics/index.cjs.js.map +0 -1
- package/heuristics/index.esm.js.map +0 -1
- package/heuristics/project-type/detect.d.ts +0 -61
- package/heuristics/project-type/detect.d.ts.map +0 -1
- package/heuristics/project-type/index.cjs.js.map +0 -1
- package/heuristics/project-type/index.esm.js.map +0 -1
- package/index.cjs.js.map +0 -1
- package/index.esm.js.map +0 -1
- package/models/index.cjs.js.map +0 -1
- package/models/index.esm.js.map +0 -1
- package/nx/detect.d.ts +0 -105
- package/nx/detect.d.ts.map +0 -1
- package/nx/devkit-loader.d.ts +0 -62
- package/nx/devkit-loader.d.ts.map +0 -1
- package/nx/index.cjs.js.map +0 -1
- package/nx/index.esm.js.map +0 -1
- package/nx/project-config.d.ts +0 -109
- package/nx/project-config.d.ts.map +0 -1
- package/project/config/detect.d.ts +0 -77
- package/project/config/detect.d.ts.map +0 -1
- package/project/config/index.cjs.js.map +0 -1
- package/project/config/index.esm.js.map +0 -1
- package/project/config/parse.d.ts +0 -53
- package/project/config/parse.d.ts.map +0 -1
- package/project/config/patterns.d.ts +0 -31
- package/project/config/patterns.d.ts.map +0 -1
- package/project/index.cjs.js.map +0 -1
- package/project/index.esm.js.map +0 -1
- package/project/package/dependencies.d.ts +0 -101
- package/project/package/dependencies.d.ts.map +0 -1
- package/project/package/index.cjs.js.map +0 -1
- package/project/package/index.esm.js.map +0 -1
- package/project/package/read.d.ts +0 -66
- package/project/package/read.d.ts.map +0 -1
- package/project/root/detect.d.ts +0 -65
- package/project/root/detect.d.ts.map +0 -1
- package/project/root/index.cjs.js.map +0 -1
- package/project/root/index.esm.js.map +0 -1
- package/project/traversal/index.cjs.js.map +0 -1
- package/project/traversal/index.esm.js.map +0 -1
- package/project/traversal/search.d.ts +0 -59
- package/project/traversal/search.d.ts.map +0 -1
- package/project/traversal/walk.d.ts +0 -63
- package/project/traversal/walk.d.ts.map +0 -1
- package/tech/backend/detect-all.d.ts +0 -13
- package/tech/backend/detect-all.d.ts.map +0 -1
- package/tech/backend/express.d.ts +0 -11
- package/tech/backend/express.d.ts.map +0 -1
- package/tech/backend/fastify.d.ts +0 -11
- package/tech/backend/fastify.d.ts.map +0 -1
- package/tech/backend/hono.d.ts +0 -11
- package/tech/backend/hono.d.ts.map +0 -1
- package/tech/backend/index.cjs.js.map +0 -1
- package/tech/backend/index.esm.js.map +0 -1
- package/tech/backend/koa.d.ts +0 -11
- package/tech/backend/koa.d.ts.map +0 -1
- package/tech/backend/nestjs.d.ts +0 -11
- package/tech/backend/nestjs.d.ts.map +0 -1
- package/tech/backend/types.d.ts +0 -31
- package/tech/backend/types.d.ts.map +0 -1
- package/tech/build/babel.d.ts +0 -13
- package/tech/build/babel.d.ts.map +0 -1
- package/tech/build/detect-all.d.ts +0 -13
- package/tech/build/detect-all.d.ts.map +0 -1
- package/tech/build/esbuild.d.ts +0 -11
- package/tech/build/esbuild.d.ts.map +0 -1
- package/tech/build/index.cjs.js.map +0 -1
- package/tech/build/index.esm.js.map +0 -1
- package/tech/build/parcel.d.ts +0 -13
- package/tech/build/parcel.d.ts.map +0 -1
- package/tech/build/rollup.d.ts +0 -13
- package/tech/build/rollup.d.ts.map +0 -1
- package/tech/build/swc.d.ts +0 -13
- package/tech/build/swc.d.ts.map +0 -1
- package/tech/build/types.d.ts +0 -31
- package/tech/build/types.d.ts.map +0 -1
- package/tech/build/vite.d.ts +0 -13
- package/tech/build/vite.d.ts.map +0 -1
- package/tech/build/webpack.d.ts +0 -13
- package/tech/build/webpack.d.ts.map +0 -1
- package/tech/frontend/angular.d.ts +0 -11
- package/tech/frontend/angular.d.ts.map +0 -1
- package/tech/frontend/astro.d.ts +0 -11
- package/tech/frontend/astro.d.ts.map +0 -1
- package/tech/frontend/detect-all.d.ts +0 -13
- package/tech/frontend/detect-all.d.ts.map +0 -1
- package/tech/frontend/gatsby.d.ts +0 -11
- package/tech/frontend/gatsby.d.ts.map +0 -1
- package/tech/frontend/index.cjs.js.map +0 -1
- package/tech/frontend/index.esm.js.map +0 -1
- package/tech/frontend/nextjs.d.ts +0 -11
- package/tech/frontend/nextjs.d.ts.map +0 -1
- package/tech/frontend/nuxt.d.ts +0 -11
- package/tech/frontend/nuxt.d.ts.map +0 -1
- package/tech/frontend/qwik.d.ts +0 -11
- package/tech/frontend/qwik.d.ts.map +0 -1
- package/tech/frontend/react.d.ts +0 -11
- package/tech/frontend/react.d.ts.map +0 -1
- package/tech/frontend/remix.d.ts +0 -11
- package/tech/frontend/remix.d.ts.map +0 -1
- package/tech/frontend/solid.d.ts +0 -11
- package/tech/frontend/solid.d.ts.map +0 -1
- package/tech/frontend/svelte.d.ts +0 -11
- package/tech/frontend/svelte.d.ts.map +0 -1
- package/tech/frontend/sveltekit.d.ts +0 -11
- package/tech/frontend/sveltekit.d.ts.map +0 -1
- package/tech/frontend/types.d.ts +0 -35
- package/tech/frontend/types.d.ts.map +0 -1
- package/tech/frontend/vue.d.ts +0 -11
- package/tech/frontend/vue.d.ts.map +0 -1
- package/tech/index.cjs.js.map +0 -1
- package/tech/index.esm.js.map +0 -1
- package/tech/legacy/angularjs.d.ts +0 -12
- package/tech/legacy/angularjs.d.ts.map +0 -1
- package/tech/legacy/backbone.d.ts +0 -11
- package/tech/legacy/backbone.d.ts.map +0 -1
- package/tech/legacy/detect-all.d.ts +0 -13
- package/tech/legacy/detect-all.d.ts.map +0 -1
- package/tech/legacy/ember.d.ts +0 -11
- package/tech/legacy/ember.d.ts.map +0 -1
- package/tech/legacy/index.cjs.js.map +0 -1
- package/tech/legacy/index.esm.js.map +0 -1
- package/tech/legacy/jquery.d.ts +0 -11
- package/tech/legacy/jquery.d.ts.map +0 -1
- package/tech/legacy/types.d.ts +0 -33
- package/tech/legacy/types.d.ts.map +0 -1
- package/tech/linting/biome.d.ts +0 -11
- package/tech/linting/biome.d.ts.map +0 -1
- package/tech/linting/detect-all.d.ts +0 -13
- package/tech/linting/detect-all.d.ts.map +0 -1
- package/tech/linting/eslint.d.ts +0 -13
- package/tech/linting/eslint.d.ts.map +0 -1
- package/tech/linting/index.cjs.js.map +0 -1
- package/tech/linting/index.esm.js.map +0 -1
- package/tech/linting/prettier.d.ts +0 -13
- package/tech/linting/prettier.d.ts.map +0 -1
- package/tech/linting/stylelint.d.ts +0 -13
- package/tech/linting/stylelint.d.ts.map +0 -1
- package/tech/linting/types.d.ts +0 -31
- package/tech/linting/types.d.ts.map +0 -1
- package/tech/monorepo/detect-all.d.ts +0 -13
- package/tech/monorepo/detect-all.d.ts.map +0 -1
- package/tech/monorepo/index.cjs.js.map +0 -1
- package/tech/monorepo/index.esm.js.map +0 -1
- package/tech/monorepo/lerna.d.ts +0 -11
- package/tech/monorepo/lerna.d.ts.map +0 -1
- package/tech/monorepo/npm-workspaces.d.ts +0 -11
- package/tech/monorepo/npm-workspaces.d.ts.map +0 -1
- package/tech/monorepo/nx.d.ts +0 -11
- package/tech/monorepo/nx.d.ts.map +0 -1
- package/tech/monorepo/pnpm-workspaces.d.ts +0 -9
- package/tech/monorepo/pnpm-workspaces.d.ts.map +0 -1
- package/tech/monorepo/rush.d.ts +0 -11
- package/tech/monorepo/rush.d.ts.map +0 -1
- package/tech/monorepo/turborepo.d.ts +0 -11
- package/tech/monorepo/turborepo.d.ts.map +0 -1
- package/tech/monorepo/types.d.ts +0 -39
- package/tech/monorepo/types.d.ts.map +0 -1
- package/tech/monorepo/yarn-workspaces.d.ts +0 -11
- package/tech/monorepo/yarn-workspaces.d.ts.map +0 -1
- package/tech/shared-utils/detector-helpers.d.ts +0 -52
- package/tech/shared-utils/detector-helpers.d.ts.map +0 -1
- package/tech/shared-utils/types.d.ts +0 -41
- package/tech/shared-utils/types.d.ts.map +0 -1
- package/tech/testing/cypress.d.ts +0 -13
- package/tech/testing/cypress.d.ts.map +0 -1
- package/tech/testing/detect-all.d.ts +0 -13
- package/tech/testing/detect-all.d.ts.map +0 -1
- package/tech/testing/index.cjs.js.map +0 -1
- package/tech/testing/index.esm.js.map +0 -1
- package/tech/testing/jest.d.ts +0 -13
- package/tech/testing/jest.d.ts.map +0 -1
- package/tech/testing/mocha.d.ts +0 -13
- package/tech/testing/mocha.d.ts.map +0 -1
- package/tech/testing/playwright.d.ts +0 -13
- package/tech/testing/playwright.d.ts.map +0 -1
- package/tech/testing/types.d.ts +0 -35
- package/tech/testing/types.d.ts.map +0 -1
- package/tech/testing/vitest.d.ts +0 -13
- package/tech/testing/vitest.d.ts.map +0 -1
- package/tech/types/detectors.d.ts +0 -67
- package/tech/types/detectors.d.ts.map +0 -1
- package/tech/types/index.cjs.js.map +0 -1
- package/tech/types/index.esm.js.map +0 -1
- package/vfs/commit.d.ts +0 -32
- package/vfs/commit.d.ts.map +0 -1
- package/vfs/diff.d.ts +0 -73
- package/vfs/diff.d.ts.map +0 -1
- package/vfs/factory.d.ts +0 -37
- package/vfs/factory.d.ts.map +0 -1
- package/vfs/fs-tree.d.ts +0 -13
- package/vfs/fs-tree.d.ts.map +0 -1
- package/vfs/index.cjs.js.map +0 -1
- package/vfs/index.esm.js.map +0 -1
- package/vfs/types.d.ts +0 -178
- package/vfs/types.d.ts.map +0 -1
|
@@ -1,426 +1,15 @@
|
|
|
1
|
-
import { join as join$1, resolve, parse
|
|
1
|
+
import { join as join$1, resolve, parse, dirname } from 'node:path';
|
|
2
|
+
import { isArray } from '../../_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/array/index.esm.js';
|
|
3
|
+
import { createError } from '../../_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/error/index.esm.js';
|
|
4
|
+
import { stringify, parse as parse$1 } from '../../_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/json/index.esm.js';
|
|
5
|
+
import { freeze, entries, keys, defineProperties, values } from '../../_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/object/index.esm.js';
|
|
2
6
|
import { existsSync, readFileSync } from 'node:fs';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
* @module @hyperfrontend/immutable-api-utils/built-in-copy/array
|
|
11
|
-
*/
|
|
12
|
-
// Capture references at module initialization time
|
|
13
|
-
const _Array = globalThis.Array;
|
|
14
|
-
/**
|
|
15
|
-
* (Safe copy) Determines whether the passed value is an Array.
|
|
16
|
-
*/
|
|
17
|
-
const isArray = _Array.isArray;
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Safe copies of Error built-ins via factory functions.
|
|
21
|
-
*
|
|
22
|
-
* Since constructors cannot be safely captured via Object.assign, this module
|
|
23
|
-
* provides factory functions that use Reflect.construct internally.
|
|
24
|
-
*
|
|
25
|
-
* These references are captured at module initialization time to protect against
|
|
26
|
-
* prototype pollution attacks. Import only what you need for tree-shaking.
|
|
27
|
-
*
|
|
28
|
-
* @module @hyperfrontend/immutable-api-utils/built-in-copy/error
|
|
29
|
-
*/
|
|
30
|
-
// Capture references at module initialization time
|
|
31
|
-
const _Error = globalThis.Error;
|
|
32
|
-
const _Reflect$1 = globalThis.Reflect;
|
|
33
|
-
/**
|
|
34
|
-
* (Safe copy) Creates a new Error using the captured Error constructor.
|
|
35
|
-
* Use this instead of `new Error()`.
|
|
36
|
-
*
|
|
37
|
-
* @param message - Optional error message.
|
|
38
|
-
* @param options - Optional error options.
|
|
39
|
-
* @returns A new Error instance.
|
|
40
|
-
*/
|
|
41
|
-
const createError = (message, options) => _Reflect$1.construct(_Error, [message, options]);
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* Safe copies of JSON built-in methods.
|
|
45
|
-
*
|
|
46
|
-
* These references are captured at module initialization time to protect against
|
|
47
|
-
* prototype pollution attacks. Import only what you need for tree-shaking.
|
|
48
|
-
*
|
|
49
|
-
* @module @hyperfrontend/immutable-api-utils/built-in-copy/json
|
|
50
|
-
*/
|
|
51
|
-
// Capture references at module initialization time
|
|
52
|
-
const _JSON = globalThis.JSON;
|
|
53
|
-
/**
|
|
54
|
-
* (Safe copy) Converts a JavaScript Object Notation (JSON) string into an object.
|
|
55
|
-
*/
|
|
56
|
-
const parse = _JSON.parse;
|
|
57
|
-
/**
|
|
58
|
-
* (Safe copy) Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
|
|
59
|
-
*/
|
|
60
|
-
const stringify = _JSON.stringify;
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Safe copies of Object built-in methods.
|
|
64
|
-
*
|
|
65
|
-
* These references are captured at module initialization time to protect against
|
|
66
|
-
* prototype pollution attacks. Import only what you need for tree-shaking.
|
|
67
|
-
*
|
|
68
|
-
* @module @hyperfrontend/immutable-api-utils/built-in-copy/object
|
|
69
|
-
*/
|
|
70
|
-
// Capture references at module initialization time
|
|
71
|
-
const _Object = globalThis.Object;
|
|
72
|
-
/**
|
|
73
|
-
* (Safe copy) Prevents modification of existing property attributes and values,
|
|
74
|
-
* and prevents the addition of new properties.
|
|
75
|
-
*/
|
|
76
|
-
const freeze = _Object.freeze;
|
|
77
|
-
/**
|
|
78
|
-
* (Safe copy) Returns the names of the enumerable string properties and methods of an object.
|
|
79
|
-
*/
|
|
80
|
-
const keys = _Object.keys;
|
|
81
|
-
/**
|
|
82
|
-
* (Safe copy) Returns an array of key/values of the enumerable own properties of an object.
|
|
83
|
-
*/
|
|
84
|
-
const entries = _Object.entries;
|
|
85
|
-
/**
|
|
86
|
-
* (Safe copy) Returns an array of values of the enumerable own properties of an object.
|
|
87
|
-
*/
|
|
88
|
-
const values = _Object.values;
|
|
89
|
-
/**
|
|
90
|
-
* (Safe copy) Adds one or more properties to an object, and/or modifies attributes of existing properties.
|
|
91
|
-
*/
|
|
92
|
-
const defineProperties = _Object.defineProperties;
|
|
93
|
-
|
|
94
|
-
/**
|
|
95
|
-
* Create a structured error with code and optional context.
|
|
96
|
-
*
|
|
97
|
-
* @param message - The human-readable error message
|
|
98
|
-
* @param code - The machine-readable error code for programmatic handling
|
|
99
|
-
* @param context - Additional contextual information about the error
|
|
100
|
-
* @returns Structured error instance with code and context properties
|
|
101
|
-
*
|
|
102
|
-
* @example
|
|
103
|
-
* ```typescript
|
|
104
|
-
* import { createStructuredError } from '@hyperfrontend/project-scope'
|
|
105
|
-
*
|
|
106
|
-
* throw createStructuredError(
|
|
107
|
-
* 'Configuration file not found',
|
|
108
|
-
* 'CONFIG_NOT_FOUND',
|
|
109
|
-
* { path: './config.json', searched: ['./config.json', './settings.json'] }
|
|
110
|
-
* )
|
|
111
|
-
* ```
|
|
112
|
-
*/
|
|
113
|
-
function createStructuredError(message, code, context) {
|
|
114
|
-
const error = createError(message);
|
|
115
|
-
error.code = code;
|
|
116
|
-
error.context = context ?? {};
|
|
117
|
-
return error;
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* Create a configuration-related error.
|
|
121
|
-
*
|
|
122
|
-
* @param message - The human-readable error message
|
|
123
|
-
* @param code - The machine-readable error code for programmatic handling
|
|
124
|
-
* @param context - Additional contextual information (e.g., file path, config key)
|
|
125
|
-
* @returns Structured error instance tagged with type 'config'
|
|
126
|
-
*/
|
|
127
|
-
function createConfigError(message, code, context) {
|
|
128
|
-
return createStructuredError(message, code, { ...context, type: 'config' });
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
/**
|
|
132
|
-
* Safe copies of Console built-in methods.
|
|
133
|
-
*
|
|
134
|
-
* These references are captured at module initialization time to protect against
|
|
135
|
-
* prototype pollution attacks. Import only what you need for tree-shaking.
|
|
136
|
-
*
|
|
137
|
-
* @module @hyperfrontend/immutable-api-utils/built-in-copy/console
|
|
138
|
-
*/
|
|
139
|
-
// Capture references at module initialization time
|
|
140
|
-
const _console = globalThis.console;
|
|
141
|
-
/**
|
|
142
|
-
* (Safe copy) Outputs a message to the console.
|
|
143
|
-
*/
|
|
144
|
-
const log = _console.log.bind(_console);
|
|
145
|
-
/**
|
|
146
|
-
* (Safe copy) Outputs a warning message to the console.
|
|
147
|
-
*/
|
|
148
|
-
const warn = _console.warn.bind(_console);
|
|
149
|
-
/**
|
|
150
|
-
* (Safe copy) Outputs an error message to the console.
|
|
151
|
-
*/
|
|
152
|
-
const error = _console.error.bind(_console);
|
|
153
|
-
/**
|
|
154
|
-
* (Safe copy) Outputs an informational message to the console.
|
|
155
|
-
*/
|
|
156
|
-
const info = _console.info.bind(_console);
|
|
157
|
-
/**
|
|
158
|
-
* (Safe copy) Outputs a debug message to the console.
|
|
159
|
-
*/
|
|
160
|
-
const debug = _console.debug.bind(_console);
|
|
161
|
-
/**
|
|
162
|
-
* (Safe copy) Outputs a stack trace to the console.
|
|
163
|
-
*/
|
|
164
|
-
_console.trace.bind(_console);
|
|
165
|
-
/**
|
|
166
|
-
* (Safe copy) Displays an interactive listing of the properties of a specified object.
|
|
167
|
-
*/
|
|
168
|
-
_console.dir.bind(_console);
|
|
169
|
-
/**
|
|
170
|
-
* (Safe copy) Displays tabular data as a table.
|
|
171
|
-
*/
|
|
172
|
-
_console.table.bind(_console);
|
|
173
|
-
/**
|
|
174
|
-
* (Safe copy) Writes an error message to the console if the assertion is false.
|
|
175
|
-
*/
|
|
176
|
-
_console.assert.bind(_console);
|
|
177
|
-
/**
|
|
178
|
-
* (Safe copy) Clears the console.
|
|
179
|
-
*/
|
|
180
|
-
_console.clear.bind(_console);
|
|
181
|
-
/**
|
|
182
|
-
* (Safe copy) Logs the number of times that this particular call to count() has been called.
|
|
183
|
-
*/
|
|
184
|
-
_console.count.bind(_console);
|
|
185
|
-
/**
|
|
186
|
-
* (Safe copy) Resets the counter used with console.count().
|
|
187
|
-
*/
|
|
188
|
-
_console.countReset.bind(_console);
|
|
189
|
-
/**
|
|
190
|
-
* (Safe copy) Creates a new inline group in the console.
|
|
191
|
-
*/
|
|
192
|
-
_console.group.bind(_console);
|
|
193
|
-
/**
|
|
194
|
-
* (Safe copy) Creates a new inline group in the console that is initially collapsed.
|
|
195
|
-
*/
|
|
196
|
-
_console.groupCollapsed.bind(_console);
|
|
197
|
-
/**
|
|
198
|
-
* (Safe copy) Exits the current inline group.
|
|
199
|
-
*/
|
|
200
|
-
_console.groupEnd.bind(_console);
|
|
201
|
-
/**
|
|
202
|
-
* (Safe copy) Starts a timer with a name specified as an input parameter.
|
|
203
|
-
*/
|
|
204
|
-
_console.time.bind(_console);
|
|
205
|
-
/**
|
|
206
|
-
* (Safe copy) Stops a timer that was previously started.
|
|
207
|
-
*/
|
|
208
|
-
_console.timeEnd.bind(_console);
|
|
209
|
-
/**
|
|
210
|
-
* (Safe copy) Logs the current value of a timer that was previously started.
|
|
211
|
-
*/
|
|
212
|
-
_console.timeLog.bind(_console);
|
|
213
|
-
|
|
214
|
-
/**
|
|
215
|
-
* Safe copies of Set built-in via factory function.
|
|
216
|
-
*
|
|
217
|
-
* Since constructors cannot be safely captured via Object.assign, this module
|
|
218
|
-
* provides a factory function that uses Reflect.construct internally.
|
|
219
|
-
*
|
|
220
|
-
* These references are captured at module initialization time to protect against
|
|
221
|
-
* prototype pollution attacks. Import only what you need for tree-shaking.
|
|
222
|
-
*
|
|
223
|
-
* @module @hyperfrontend/immutable-api-utils/built-in-copy/set
|
|
224
|
-
*/
|
|
225
|
-
// Capture references at module initialization time
|
|
226
|
-
const _Set = globalThis.Set;
|
|
227
|
-
const _Reflect = globalThis.Reflect;
|
|
228
|
-
/**
|
|
229
|
-
* (Safe copy) Creates a new Set using the captured Set constructor.
|
|
230
|
-
* Use this instead of `new Set()`.
|
|
231
|
-
*
|
|
232
|
-
* @param iterable - Optional iterable of values.
|
|
233
|
-
* @returns A new Set instance.
|
|
234
|
-
*/
|
|
235
|
-
const createSet = (iterable) => _Reflect.construct(_Set, iterable ? [iterable] : []);
|
|
236
|
-
|
|
237
|
-
const registeredClasses = [];
|
|
238
|
-
|
|
239
|
-
/**
|
|
240
|
-
* Returns the data type of the target.
|
|
241
|
-
* Uses native `typeof` operator, however, makes distinction between `null`, `array`, and `object`.
|
|
242
|
-
* Also, when classes are registered via `registerClass`, it checks if objects are instance of any known registered class.
|
|
243
|
-
*
|
|
244
|
-
* @param target - The target to get the data type of.
|
|
245
|
-
* @returns The data type of the target.
|
|
246
|
-
*/
|
|
247
|
-
const getType = (target) => {
|
|
248
|
-
if (target === null)
|
|
249
|
-
return 'null';
|
|
250
|
-
const nativeDataType = typeof target;
|
|
251
|
-
if (nativeDataType === 'object') {
|
|
252
|
-
if (isArray(target))
|
|
253
|
-
return 'array';
|
|
254
|
-
for (const registeredClass of registeredClasses) {
|
|
255
|
-
if (target instanceof registeredClass)
|
|
256
|
-
return registeredClass.name;
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
return nativeDataType;
|
|
260
|
-
};
|
|
261
|
-
|
|
262
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
263
|
-
/**
|
|
264
|
-
* Creates a wrapper function that only executes the wrapped function if the condition function returns true.
|
|
265
|
-
*
|
|
266
|
-
* @param func - The function to be conditionally executed.
|
|
267
|
-
* @param conditionFunc - A function that returns a boolean, determining if `func` should be executed.
|
|
268
|
-
* @returns A wrapped version of `func` that executes conditionally.
|
|
269
|
-
*/
|
|
270
|
-
function createConditionalExecutionFunction(func, conditionFunc) {
|
|
271
|
-
return function (...args) {
|
|
272
|
-
if (conditionFunc()) {
|
|
273
|
-
return func(...args);
|
|
274
|
-
}
|
|
275
|
-
};
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
279
|
-
/**
|
|
280
|
-
* Creates a wrapper function that silently ignores any errors thrown by the wrapped void function.
|
|
281
|
-
* This function is specifically for wrapping functions that do not return a value (void functions).
|
|
282
|
-
* Exceptions are swallowed without any logging or handling.
|
|
283
|
-
*
|
|
284
|
-
* @param func - The void function to be wrapped.
|
|
285
|
-
* @returns A wrapped version of the input function that ignores errors.
|
|
286
|
-
*/
|
|
287
|
-
function createErrorIgnoringFunction(func) {
|
|
288
|
-
return function (...args) {
|
|
289
|
-
try {
|
|
290
|
-
func(...args);
|
|
291
|
-
}
|
|
292
|
-
catch {
|
|
293
|
-
// Deliberately swallowing/ignoring the exception
|
|
294
|
-
}
|
|
295
|
-
};
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
299
|
-
/**
|
|
300
|
-
* A no-operation function (noop) that does nothing regardless of the arguments passed.
|
|
301
|
-
* It is designed to be as permissive as possible in its typing without using the `Function` keyword.
|
|
302
|
-
*
|
|
303
|
-
* @param args - Any arguments passed to the function (ignored)
|
|
304
|
-
*/
|
|
305
|
-
const noop = (...args) => {
|
|
306
|
-
// Intentionally does nothing
|
|
307
|
-
};
|
|
308
|
-
|
|
309
|
-
const logLevels = ['none', 'error', 'warn', 'log', 'info', 'debug'];
|
|
310
|
-
const priority = {
|
|
311
|
-
error: 4,
|
|
312
|
-
warn: 3,
|
|
313
|
-
log: 2,
|
|
314
|
-
info: 1,
|
|
315
|
-
debug: 0,
|
|
316
|
-
};
|
|
317
|
-
/**
|
|
318
|
-
* Validates whether a given string is a valid log level.
|
|
319
|
-
*
|
|
320
|
-
* @param level - The log level to validate
|
|
321
|
-
* @returns True if the level is valid, false otherwise
|
|
322
|
-
*/
|
|
323
|
-
function isValidLogLevel(level) {
|
|
324
|
-
return logLevels.includes(level);
|
|
325
|
-
}
|
|
326
|
-
/**
|
|
327
|
-
* Creates a log level configuration manager for controlling logging behavior.
|
|
328
|
-
* Provides methods to get, set, and evaluate log levels based on priority.
|
|
329
|
-
*
|
|
330
|
-
* @param level - The initial log level (defaults to 'error')
|
|
331
|
-
* @returns A configuration object with log level management methods
|
|
332
|
-
* @throws {Error} When the provided level is not a valid log level
|
|
333
|
-
*/
|
|
334
|
-
function createLogLevelConfig(level = 'error') {
|
|
335
|
-
if (!isValidLogLevel(level)) {
|
|
336
|
-
throw createError('Cannot create log level configuration with a valid default log level');
|
|
337
|
-
}
|
|
338
|
-
const state = { level };
|
|
339
|
-
const getLogLevel = () => state.level;
|
|
340
|
-
const setLogLevel = (level) => {
|
|
341
|
-
if (!isValidLogLevel(level)) {
|
|
342
|
-
throw createError(`Cannot set value '${level}' level. Expected levels are ${logLevels}.`);
|
|
343
|
-
}
|
|
344
|
-
state.level = level;
|
|
345
|
-
};
|
|
346
|
-
const shouldLog = (level) => {
|
|
347
|
-
if (state.level === 'none' || level === 'none' || !isValidLogLevel(level)) {
|
|
348
|
-
return false;
|
|
349
|
-
}
|
|
350
|
-
return priority[level] >= priority[state.level];
|
|
351
|
-
};
|
|
352
|
-
return freeze({
|
|
353
|
-
getLogLevel,
|
|
354
|
-
setLogLevel,
|
|
355
|
-
shouldLog,
|
|
356
|
-
});
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
/**
|
|
360
|
-
* Creates a logger instance with configurable log level filtering.
|
|
361
|
-
* Each log function is wrapped to respect the current log level setting.
|
|
362
|
-
*
|
|
363
|
-
* @param error - Function to handle error-level logs (required)
|
|
364
|
-
* @param warn - Function to handle warning-level logs (optional, defaults to noop)
|
|
365
|
-
* @param log - Function to handle standard logs (optional, defaults to noop)
|
|
366
|
-
* @param info - Function to handle info-level logs (optional, defaults to noop)
|
|
367
|
-
* @param debug - Function to handle debug-level logs (optional, defaults to noop)
|
|
368
|
-
* @returns A frozen logger object with log methods and level control
|
|
369
|
-
* @throws {ErrorLevelFn} When any provided log function is invalid
|
|
370
|
-
*/
|
|
371
|
-
function createLogger(error, warn = noop, log = noop, info = noop, debug = noop) {
|
|
372
|
-
if (notValidLogFn(error)) {
|
|
373
|
-
throw createError(notFnMsg('error'));
|
|
374
|
-
}
|
|
375
|
-
if (notValidLogFn(warn)) {
|
|
376
|
-
throw createError(notFnMsg('warn'));
|
|
377
|
-
}
|
|
378
|
-
if (notValidLogFn(log)) {
|
|
379
|
-
throw createError(notFnMsg('log'));
|
|
380
|
-
}
|
|
381
|
-
if (notValidLogFn(info)) {
|
|
382
|
-
throw createError(notFnMsg('info'));
|
|
383
|
-
}
|
|
384
|
-
if (notValidLogFn(debug)) {
|
|
385
|
-
throw createError(notFnMsg('debug'));
|
|
386
|
-
}
|
|
387
|
-
const { setLogLevel, getLogLevel, shouldLog } = createLogLevelConfig();
|
|
388
|
-
const wrapLogFn = (fn, level) => {
|
|
389
|
-
if (fn === noop)
|
|
390
|
-
return fn;
|
|
391
|
-
const condition = () => shouldLog(level);
|
|
392
|
-
return createConditionalExecutionFunction(createErrorIgnoringFunction(fn), condition);
|
|
393
|
-
};
|
|
394
|
-
return freeze({
|
|
395
|
-
error: wrapLogFn(error, 'error'),
|
|
396
|
-
warn: wrapLogFn(warn, 'warn'),
|
|
397
|
-
log: wrapLogFn(log, 'log'),
|
|
398
|
-
info: wrapLogFn(info, 'info'),
|
|
399
|
-
debug: wrapLogFn(debug, 'debug'),
|
|
400
|
-
setLogLevel,
|
|
401
|
-
getLogLevel,
|
|
402
|
-
});
|
|
403
|
-
}
|
|
404
|
-
/**
|
|
405
|
-
* Validates whether a given value is a valid log function.
|
|
406
|
-
*
|
|
407
|
-
* @param fn - The value to validate
|
|
408
|
-
* @returns True if the value is not a function (invalid), false if it is valid
|
|
409
|
-
*/
|
|
410
|
-
function notValidLogFn(fn) {
|
|
411
|
-
return getType(fn) !== 'function' && fn !== noop;
|
|
412
|
-
}
|
|
413
|
-
/**
|
|
414
|
-
* Generates an error message for invalid log function parameters.
|
|
415
|
-
*
|
|
416
|
-
* @param label - The name of the log function that failed validation
|
|
417
|
-
* @returns A formatted error message string
|
|
418
|
-
*/
|
|
419
|
-
function notFnMsg(label) {
|
|
420
|
-
return `Cannot create a logger when ${label} is not a function`;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
createLogger(error, warn, log, info, debug);
|
|
7
|
+
import { error, warn, log, info, debug } from '../../_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/console/index.esm.js';
|
|
8
|
+
import { createSet } from '../../_dependencies/@hyperfrontend/immutable-api-utils/built-in-copy/set/index.esm.js';
|
|
9
|
+
import { createLogger } from '../../_dependencies/@hyperfrontend/logging/index.esm.js';
|
|
10
|
+
import { exists } from '../../_shared/core/fs/stat/index.esm.js';
|
|
11
|
+
import { join } from '../../_shared/core/path/join/index.esm.js';
|
|
12
|
+
import { createConfigError } from '../../_shared/core/errors/structured-errors/index.esm.js';
|
|
424
13
|
|
|
425
14
|
/**
|
|
426
15
|
* Global log level registry.
|
|
@@ -460,6 +49,13 @@ function isSensitiveKey(key) {
|
|
|
460
49
|
*
|
|
461
50
|
* @param obj - Object to sanitize
|
|
462
51
|
* @returns New object with sensitive values redacted
|
|
52
|
+
*
|
|
53
|
+
* @example Sanitizing sensitive data
|
|
54
|
+
* ```typescript
|
|
55
|
+
* const config = { apiKey: 'secret123', endpoint: 'https://api.example.com' }
|
|
56
|
+
* const safe = sanitize(config)
|
|
57
|
+
* // => { apiKey: '[REDACTED]', endpoint: 'https://api.example.com' }
|
|
58
|
+
* ```
|
|
463
59
|
*/
|
|
464
60
|
function sanitize(obj) {
|
|
465
61
|
if (obj === null || obj === undefined) {
|
|
@@ -510,7 +106,7 @@ function formatMessage(namespace, message, meta) {
|
|
|
510
106
|
* @param options - Logger configuration options
|
|
511
107
|
* @returns A configured scoped logger instance
|
|
512
108
|
*
|
|
513
|
-
* @example
|
|
109
|
+
* @example Creating a scoped logger
|
|
514
110
|
* ```typescript
|
|
515
111
|
* const logger = createScopedLogger('project-scope')
|
|
516
112
|
* logger.setLogLevel('debug')
|
|
@@ -525,14 +121,11 @@ function formatMessage(namespace, message, meta) {
|
|
|
525
121
|
*/
|
|
526
122
|
function createScopedLogger(namespace, options = {}) {
|
|
527
123
|
const { level = 'error', sanitizeSecrets = true } = options;
|
|
528
|
-
// Create wrapper functions that add namespace prefix and sanitization
|
|
529
124
|
const createLogFn = (baseFn) => (message, meta) => {
|
|
530
125
|
const processedMeta = sanitizeSecrets && meta ? sanitize(meta) : meta;
|
|
531
126
|
baseFn(formatMessage(namespace, message, processedMeta));
|
|
532
127
|
};
|
|
533
|
-
// Create base logger with wrapped functions
|
|
534
128
|
const baseLogger = createLogger(createLogFn(error), createLogFn(warn), createLogFn(log), createLogFn(info), createLogFn(debug));
|
|
535
|
-
// Set initial log level (use global override if set)
|
|
536
129
|
baseLogger.setLogLevel(level);
|
|
537
130
|
const scopedLogger = freeze({
|
|
538
131
|
error: (message, meta) => baseLogger.error(message, meta),
|
|
@@ -543,7 +136,6 @@ function createScopedLogger(namespace, options = {}) {
|
|
|
543
136
|
setLogLevel: baseLogger.setLogLevel,
|
|
544
137
|
getLogLevel: baseLogger.getLogLevel,
|
|
545
138
|
});
|
|
546
|
-
// Register logger for global level management
|
|
547
139
|
loggerRegistry.add(scopedLogger);
|
|
548
140
|
return scopedLogger;
|
|
549
141
|
}
|
|
@@ -551,7 +143,7 @@ function createScopedLogger(namespace, options = {}) {
|
|
|
551
143
|
* Default logger instance for the project-scope library.
|
|
552
144
|
* Use this for general logging within the library.
|
|
553
145
|
*
|
|
554
|
-
* @example
|
|
146
|
+
* @example Using the default logger
|
|
555
147
|
* ```typescript
|
|
556
148
|
* import { logger } from '@hyperfrontend/project-scope/core'
|
|
557
149
|
*
|
|
@@ -569,6 +161,15 @@ const fsLogger = createScopedLogger('project-scope:fs');
|
|
|
569
161
|
* @param code - The category code for this type of filesystem failure
|
|
570
162
|
* @param context - Additional context including path, operation, and cause
|
|
571
163
|
* @returns A configured Error object with code and context properties
|
|
164
|
+
*
|
|
165
|
+
* @example Creating a file system error
|
|
166
|
+
* ```typescript
|
|
167
|
+
* throw createFileSystemError(
|
|
168
|
+
* 'Cannot read file',
|
|
169
|
+
* 'FS_READ_ERROR',
|
|
170
|
+
* { path: './missing.txt', operation: 'read' }
|
|
171
|
+
* )
|
|
172
|
+
* ```
|
|
572
173
|
*/
|
|
573
174
|
function createFileSystemError(message, code, context) {
|
|
574
175
|
const error = createError(message);
|
|
@@ -586,7 +187,7 @@ function createFileSystemError(message, code, context) {
|
|
|
586
187
|
* @returns File contents as string
|
|
587
188
|
* @throws {Error} If file doesn't exist or can't be read
|
|
588
189
|
*
|
|
589
|
-
* @example
|
|
190
|
+
* @example Reading file contents
|
|
590
191
|
* ```typescript
|
|
591
192
|
* import { readFileContent } from '@hyperfrontend/project-scope'
|
|
592
193
|
*
|
|
@@ -613,6 +214,14 @@ function readFileContent(filePath, encoding = 'utf-8') {
|
|
|
613
214
|
* @param filePath - Path to file
|
|
614
215
|
* @param encoding - File encoding (default: utf-8)
|
|
615
216
|
* @returns File contents or null if file doesn't exist
|
|
217
|
+
*
|
|
218
|
+
* @example Reading file if it exists
|
|
219
|
+
* ```typescript
|
|
220
|
+
* const content = readFileIfExists('./optional-config.json')
|
|
221
|
+
* if (content) {
|
|
222
|
+
* // File existed, use content
|
|
223
|
+
* }
|
|
224
|
+
* ```
|
|
616
225
|
*/
|
|
617
226
|
function readFileIfExists(filePath, encoding = 'utf-8') {
|
|
618
227
|
if (!existsSync(filePath)) {
|
|
@@ -626,31 +235,8 @@ function readFileIfExists(filePath, encoding = 'utf-8') {
|
|
|
626
235
|
}
|
|
627
236
|
}
|
|
628
237
|
|
|
629
|
-
createScopedLogger('project-scope:fs:write');
|
|
630
|
-
|
|
631
|
-
/**
|
|
632
|
-
* Check if path exists.
|
|
633
|
-
*
|
|
634
|
-
* @param filePath - Path to check
|
|
635
|
-
* @returns True if path exists
|
|
636
|
-
*/
|
|
637
|
-
function exists(filePath) {
|
|
638
|
-
return existsSync(filePath);
|
|
639
|
-
}
|
|
640
|
-
|
|
641
238
|
createScopedLogger('project-scope:fs:dir');
|
|
642
239
|
|
|
643
|
-
/**
|
|
644
|
-
* Join path segments.
|
|
645
|
-
* Uses platform-specific separators (e.g., / or \).
|
|
646
|
-
*
|
|
647
|
-
* @param paths - Path segments to join
|
|
648
|
-
* @returns Joined path
|
|
649
|
-
*/
|
|
650
|
-
function join(...paths) {
|
|
651
|
-
return join$1(...paths);
|
|
652
|
-
}
|
|
653
|
-
|
|
654
240
|
const fsTraversalLogger = createScopedLogger('project-scope:fs:traversal');
|
|
655
241
|
/**
|
|
656
242
|
* Generic upward directory traversal.
|
|
@@ -659,11 +245,20 @@ const fsTraversalLogger = createScopedLogger('project-scope:fs:traversal');
|
|
|
659
245
|
* @param startPath - Starting directory
|
|
660
246
|
* @param predicate - Function to test each directory
|
|
661
247
|
* @returns First matching directory or null
|
|
248
|
+
*
|
|
249
|
+
* @example Finding directory containing README
|
|
250
|
+
* ```typescript
|
|
251
|
+
* // Find first directory containing a README
|
|
252
|
+
* const readmeDir = traverseUpward('./src/utils', (dir) =>
|
|
253
|
+
* existsSync(join(dir, 'README.md'))
|
|
254
|
+
* )
|
|
255
|
+
* // => '/project' or null
|
|
256
|
+
* ```
|
|
662
257
|
*/
|
|
663
258
|
function traverseUpward(startPath, predicate) {
|
|
664
259
|
fsTraversalLogger.debug('Starting upward traversal', { startPath });
|
|
665
260
|
let currentPath = resolve(startPath);
|
|
666
|
-
const rootPath = parse
|
|
261
|
+
const rootPath = parse(currentPath).root;
|
|
667
262
|
while (currentPath !== rootPath) {
|
|
668
263
|
if (predicate(currentPath)) {
|
|
669
264
|
fsTraversalLogger.debug('Upward traversal found match', { startPath, foundPath: currentPath });
|
|
@@ -671,7 +266,6 @@ function traverseUpward(startPath, predicate) {
|
|
|
671
266
|
}
|
|
672
267
|
currentPath = dirname(currentPath);
|
|
673
268
|
}
|
|
674
|
-
// Check root directory
|
|
675
269
|
if (predicate(rootPath)) {
|
|
676
270
|
fsTraversalLogger.debug('Upward traversal found match at root', { startPath, foundPath: rootPath });
|
|
677
271
|
return rootPath;
|
|
@@ -685,6 +279,17 @@ function traverseUpward(startPath, predicate) {
|
|
|
685
279
|
* @param startPath - Starting directory
|
|
686
280
|
* @param markers - Array of marker file names to search for
|
|
687
281
|
* @returns First directory containing any marker, or null
|
|
282
|
+
*
|
|
283
|
+
* @example Finding project root by marker files
|
|
284
|
+
* ```typescript
|
|
285
|
+
* // Find project root by looking for common marker files
|
|
286
|
+
* const projectRoot = locateByMarkers('./src/components', [
|
|
287
|
+
* 'package.json',
|
|
288
|
+
* 'nx.json',
|
|
289
|
+
* 'tsconfig.base.json'
|
|
290
|
+
* ])
|
|
291
|
+
* // => '/workspace/my-project'
|
|
292
|
+
* ```
|
|
688
293
|
*/
|
|
689
294
|
function locateByMarkers(startPath, markers) {
|
|
690
295
|
fsTraversalLogger.debug('Locating by markers', { startPath, markers });
|
|
@@ -695,6 +300,8 @@ function locateByMarkers(startPath, markers) {
|
|
|
695
300
|
return result;
|
|
696
301
|
}
|
|
697
302
|
|
|
303
|
+
createScopedLogger('project-scope:fs:write');
|
|
304
|
+
|
|
698
305
|
const packageLogger = createScopedLogger('project-scope:project:package');
|
|
699
306
|
/**
|
|
700
307
|
* Verifies that a value is an object with only string values,
|
|
@@ -765,13 +372,21 @@ function validatePackageJson(data) {
|
|
|
765
372
|
* @param projectPath - Project directory path or path to package.json
|
|
766
373
|
* @returns Parsed package.json
|
|
767
374
|
* @throws {Error} Error if file doesn't exist or is invalid
|
|
375
|
+
*
|
|
376
|
+
* @example Reading package.json
|
|
377
|
+
* ```typescript
|
|
378
|
+
* import { readPackageJson } from '@hyperfrontend/project-scope'
|
|
379
|
+
*
|
|
380
|
+
* const pkg = readPackageJson('/path/to/project')
|
|
381
|
+
* console.log(pkg.name, pkg.version)
|
|
382
|
+
* ```
|
|
768
383
|
*/
|
|
769
384
|
function readPackageJson(projectPath) {
|
|
770
385
|
const packageJsonPath = projectPath.endsWith('package.json') ? projectPath : join$1(projectPath, 'package.json');
|
|
771
386
|
packageLogger.debug('Reading package.json', { path: packageJsonPath });
|
|
772
387
|
const content = readFileContent(packageJsonPath);
|
|
773
388
|
try {
|
|
774
|
-
const data = parse(content);
|
|
389
|
+
const data = parse$1(content);
|
|
775
390
|
const validated = validatePackageJson(data);
|
|
776
391
|
packageLogger.debug('Package.json read successfully', { path: packageJsonPath, name: validated.name });
|
|
777
392
|
return validated;
|
|
@@ -793,6 +408,16 @@ function readPackageJson(projectPath) {
|
|
|
793
408
|
*
|
|
794
409
|
* @param projectPath - Project directory path or path to package.json
|
|
795
410
|
* @returns Parsed package.json or null if not found
|
|
411
|
+
*
|
|
412
|
+
* @example Reading package.json if it exists
|
|
413
|
+
* ```typescript
|
|
414
|
+
* import { readPackageJsonIfExists } from '@hyperfrontend/project-scope'
|
|
415
|
+
*
|
|
416
|
+
* const pkg = readPackageJsonIfExists('/path/to/project')
|
|
417
|
+
* if (pkg) {
|
|
418
|
+
* console.log('Found:', pkg.name)
|
|
419
|
+
* }
|
|
420
|
+
* ```
|
|
796
421
|
*/
|
|
797
422
|
function readPackageJsonIfExists(projectPath) {
|
|
798
423
|
const packageJsonPath = projectPath.endsWith('package.json') ? projectPath : join$1(projectPath, 'package.json');
|
|
@@ -802,7 +427,7 @@ function readPackageJsonIfExists(projectPath) {
|
|
|
802
427
|
return null;
|
|
803
428
|
}
|
|
804
429
|
try {
|
|
805
|
-
const validated = validatePackageJson(parse(content));
|
|
430
|
+
const validated = validatePackageJson(parse$1(content));
|
|
806
431
|
packageLogger.debug('Package.json loaded', { path: packageJsonPath, name: validated.name });
|
|
807
432
|
return validated;
|
|
808
433
|
}
|
|
@@ -816,6 +441,14 @@ function readPackageJsonIfExists(projectPath) {
|
|
|
816
441
|
*
|
|
817
442
|
* @param startPath - Starting path
|
|
818
443
|
* @returns Path to directory containing package.json, or null if not found
|
|
444
|
+
*
|
|
445
|
+
* @example Finding nearest package.json
|
|
446
|
+
* ```typescript
|
|
447
|
+
* import { findNearestPackageJson } from '@hyperfrontend/project-scope'
|
|
448
|
+
*
|
|
449
|
+
* const pkgDir = findNearestPackageJson('./src/deep/nested/file.ts')
|
|
450
|
+
* // => '/path/to/project'
|
|
451
|
+
* ```
|
|
819
452
|
*/
|
|
820
453
|
function findNearestPackageJson(startPath) {
|
|
821
454
|
return locateByMarkers(startPath, ['package.json']);
|
|
@@ -826,6 +459,15 @@ function findNearestPackageJson(startPath) {
|
|
|
826
459
|
*
|
|
827
460
|
* @param packageJson - Parsed package.json
|
|
828
461
|
* @returns All dependencies categorized
|
|
462
|
+
*
|
|
463
|
+
* @example Extracting all dependencies
|
|
464
|
+
* ```typescript
|
|
465
|
+
* import { getDependencies } from '@hyperfrontend/project-scope'
|
|
466
|
+
*
|
|
467
|
+
* const deps = getDependencies(packageJson)
|
|
468
|
+
* console.log('Runtime:', Object.keys(deps.dependencies))
|
|
469
|
+
* console.log('Dev:', Object.keys(deps.devDependencies))
|
|
470
|
+
* ```
|
|
829
471
|
*/
|
|
830
472
|
function getDependencies(packageJson) {
|
|
831
473
|
return {
|
|
@@ -840,6 +482,14 @@ function getDependencies(packageJson) {
|
|
|
840
482
|
*
|
|
841
483
|
* @param packageJson - Parsed package.json
|
|
842
484
|
* @returns Map of dependency name to version for runtime dependencies
|
|
485
|
+
*
|
|
486
|
+
* @example Getting production dependencies
|
|
487
|
+
* ```typescript
|
|
488
|
+
* import { getProductionDependencies } from '@hyperfrontend/project-scope'
|
|
489
|
+
*
|
|
490
|
+
* const prodDeps = getProductionDependencies(packageJson)
|
|
491
|
+
* // => { 'express': '^4.18.0', 'lodash': '^4.17.21' }
|
|
492
|
+
* ```
|
|
843
493
|
*/
|
|
844
494
|
function getProductionDependencies(packageJson) {
|
|
845
495
|
return packageJson.dependencies ?? {};
|
|
@@ -849,6 +499,14 @@ function getProductionDependencies(packageJson) {
|
|
|
849
499
|
*
|
|
850
500
|
* @param packageJson - Parsed package.json
|
|
851
501
|
* @returns Map of dependency name to version for dev-time dependencies
|
|
502
|
+
*
|
|
503
|
+
* @example Getting development dependencies
|
|
504
|
+
* ```typescript
|
|
505
|
+
* import { getDevDependencies } from '@hyperfrontend/project-scope'
|
|
506
|
+
*
|
|
507
|
+
* const devDeps = getDevDependencies(packageJson)
|
|
508
|
+
* // => { 'jest': '^29.0.0', 'typescript': '^5.0.0' }
|
|
509
|
+
* ```
|
|
852
510
|
*/
|
|
853
511
|
function getDevDependencies(packageJson) {
|
|
854
512
|
return packageJson.devDependencies ?? {};
|
|
@@ -858,6 +516,14 @@ function getDevDependencies(packageJson) {
|
|
|
858
516
|
*
|
|
859
517
|
* @param packageJson - Parsed package.json
|
|
860
518
|
* @returns Map of dependency name to version for peer requirements
|
|
519
|
+
*
|
|
520
|
+
* @example Getting peer dependencies
|
|
521
|
+
* ```typescript
|
|
522
|
+
* import { getPeerDependencies } from '@hyperfrontend/project-scope'
|
|
523
|
+
*
|
|
524
|
+
* const peerDeps = getPeerDependencies(packageJson)
|
|
525
|
+
* // => { 'react': '^18.0.0', 'react-dom': '^18.0.0' }
|
|
526
|
+
* ```
|
|
861
527
|
*/
|
|
862
528
|
function getPeerDependencies(packageJson) {
|
|
863
529
|
return packageJson.peerDependencies ?? {};
|
|
@@ -867,6 +533,16 @@ function getPeerDependencies(packageJson) {
|
|
|
867
533
|
*
|
|
868
534
|
* @param packageJson - Parsed package.json
|
|
869
535
|
* @returns All dependencies merged
|
|
536
|
+
*
|
|
537
|
+
* @example Getting all merged dependencies
|
|
538
|
+
* ```typescript
|
|
539
|
+
* import { getAllDependencies } from '@hyperfrontend/project-scope'
|
|
540
|
+
*
|
|
541
|
+
* const allDeps = getAllDependencies(packageJson)
|
|
542
|
+
* if ('typescript' in allDeps) {
|
|
543
|
+
* console.log('TypeScript version:', allDeps['typescript'])
|
|
544
|
+
* }
|
|
545
|
+
* ```
|
|
870
546
|
*/
|
|
871
547
|
function getAllDependencies(packageJson) {
|
|
872
548
|
return {
|
|
@@ -883,6 +559,17 @@ function getAllDependencies(packageJson) {
|
|
|
883
559
|
* @param name - Name of the dependency to check
|
|
884
560
|
* @param depTypes - Optional array of dependency types to check (defaults to all)
|
|
885
561
|
* @returns True if dependency exists in specified categories
|
|
562
|
+
*
|
|
563
|
+
* @example Checking for a dependency
|
|
564
|
+
* ```typescript
|
|
565
|
+
* import { hasDependency } from '@hyperfrontend/project-scope'
|
|
566
|
+
*
|
|
567
|
+
* // Check any dependency type
|
|
568
|
+
* hasDependency(packageJson, 'lodash')
|
|
569
|
+
*
|
|
570
|
+
* // Check only production dependencies
|
|
571
|
+
* hasDependency(packageJson, 'lodash', ['dependencies'])
|
|
572
|
+
* ```
|
|
886
573
|
*/
|
|
887
574
|
function hasDependency(packageJson, name, depTypes) {
|
|
888
575
|
const typesToCheck = depTypes ?? ['dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies'];
|
|
@@ -899,6 +586,14 @@ function hasDependency(packageJson, name, depTypes) {
|
|
|
899
586
|
* @param packageJson - Parsed package.json content
|
|
900
587
|
* @param name - Name of the dependency to look up
|
|
901
588
|
* @returns Version string or null if not found
|
|
589
|
+
*
|
|
590
|
+
* @example Getting dependency version
|
|
591
|
+
* ```typescript
|
|
592
|
+
* import { getDependencyVersion } from '@hyperfrontend/project-scope'
|
|
593
|
+
*
|
|
594
|
+
* const version = getDependencyVersion(packageJson, 'react')
|
|
595
|
+
* // => '^18.2.0' or null
|
|
596
|
+
* ```
|
|
902
597
|
*/
|
|
903
598
|
function getDependencyVersion(packageJson, name) {
|
|
904
599
|
const deps = getDependencies(packageJson);
|
|
@@ -909,6 +604,14 @@ function getDependencyVersion(packageJson, name) {
|
|
|
909
604
|
*
|
|
910
605
|
* @param packageJson - Parsed package.json
|
|
911
606
|
* @returns Array of workspace patterns or empty array
|
|
607
|
+
*
|
|
608
|
+
* @example Getting workspace patterns
|
|
609
|
+
* ```typescript
|
|
610
|
+
* import { getWorkspaces } from '@hyperfrontend/project-scope'
|
|
611
|
+
*
|
|
612
|
+
* const patterns = getWorkspaces(packageJson)
|
|
613
|
+
* // => ['packages/*', 'apps/*']
|
|
614
|
+
* ```
|
|
912
615
|
*/
|
|
913
616
|
function getWorkspaces(packageJson) {
|
|
914
617
|
if (!packageJson.workspaces)
|
|
@@ -926,6 +629,15 @@ function getWorkspaces(packageJson) {
|
|
|
926
629
|
*
|
|
927
630
|
* @param packageJson - Parsed package.json
|
|
928
631
|
* @returns True if workspaces are defined
|
|
632
|
+
*
|
|
633
|
+
* @example Checking for workspaces
|
|
634
|
+
* ```typescript
|
|
635
|
+
* import { hasWorkspaces } from '@hyperfrontend/project-scope'
|
|
636
|
+
*
|
|
637
|
+
* if (hasWorkspaces(packageJson)) {
|
|
638
|
+
* console.log('This is a monorepo')
|
|
639
|
+
* }
|
|
640
|
+
* ```
|
|
929
641
|
*/
|
|
930
642
|
function hasWorkspaces(packageJson) {
|
|
931
643
|
return getWorkspaces(packageJson).length > 0;
|
|
@@ -936,22 +648,19 @@ function hasWorkspaces(packageJson) {
|
|
|
936
648
|
* @param projectPath - Project root directory
|
|
937
649
|
* @param packageName - Package name to check
|
|
938
650
|
* @returns Boolean indicating whether the package exists in node_modules
|
|
651
|
+
*
|
|
652
|
+
* @example Checking installed packages
|
|
653
|
+
* ```typescript
|
|
654
|
+
* import { hasInstalledPackage } from '@hyperfrontend/project-scope'
|
|
655
|
+
*
|
|
656
|
+
* if (hasInstalledPackage('/project', 'typescript')) {
|
|
657
|
+
* console.log('TypeScript is installed')
|
|
658
|
+
* }
|
|
659
|
+
* ```
|
|
939
660
|
*/
|
|
940
661
|
function hasInstalledPackage(projectPath, packageName) {
|
|
941
662
|
const pkgPath = join$1(projectPath, 'node_modules', packageName, 'package.json');
|
|
942
663
|
return readPackageJsonIfExists(pkgPath) !== null;
|
|
943
664
|
}
|
|
944
|
-
/**
|
|
945
|
-
* Get installed package version from node_modules.
|
|
946
|
-
*
|
|
947
|
-
* @param projectPath - Project root directory
|
|
948
|
-
* @param packageName - Name of the npm package to look up
|
|
949
|
-
* @returns Installed version or null if not found
|
|
950
|
-
*/
|
|
951
|
-
function getInstalledVersion(projectPath, packageName) {
|
|
952
|
-
const pkg = readPackageJsonIfExists(join$1(projectPath, 'node_modules', packageName, 'package.json'));
|
|
953
|
-
return pkg?.version ?? null;
|
|
954
|
-
}
|
|
955
665
|
|
|
956
|
-
export { findNearestPackageJson, getAllDependencies, getDependencies, getDependencyVersion, getDevDependencies,
|
|
957
|
-
//# sourceMappingURL=index.esm.js.map
|
|
666
|
+
export { findNearestPackageJson, getAllDependencies, getDependencies, getDependencyVersion, getDevDependencies, getPeerDependencies, getProductionDependencies, getWorkspaces, hasDependency, hasInstalledPackage, hasWorkspaces, readPackageJson, readPackageJsonIfExists };
|