@@ -3,6 +3,7 @@ import abortSignal from './abort-signal'
33import AT_LATEST from './at-latest'
44import BIOME_JSON from './biome-json'
55import BUN from './bun'
6+ import bunCachePath from './bun-cache-path'
67import BUN_LOCK from './bun-lock'
78import BUN_LOCKB from './bun-lockb'
89import CI from './ci'
@@ -60,6 +61,7 @@ import nodeNoWarningsFlags from './node-no-warnings-flags'
6061import NODE_VERSION from './node-version'
6162import NPM from './npm'
6263import npmExecPath from './npm-exec-path'
64+ import npmLifecycleEvent from './npm-lifecycle-event'
6365import npmRealExecPath from './npm-real-exec-path'
6466import NPM_SHRINKWRAP_JSON from './npm-shrinkwrap-json'
6567import NPX from './npx'
@@ -70,11 +72,13 @@ import PACKAGE_DEFAULT_VERSION from './package-default-version'
7072import packageExtensions from './package-extensions'
7173import PACKAGE_JSON from './package-json'
7274import PACKAGE_LOCK_JSON from './package-lock-json'
75+ import packageManagerCacheNames from './package-manager-cache-names'
7376import packumentCache from './packument-cache'
7477import pacoteCachePath from './pacote-cache-path'
7578import PNPM from './pnpm'
7679import pnpmExecPath from './pnpm-exec-path'
7780import PNPM_LOCK_YAML from './pnpm-lock-yaml'
81+ import pnpmStorePath from './pnpm-store-path'
7882import PRE_COMMIT from './pre-commit'
7983import README_GLOB from './readme-glob'
8084import README_GLOB_RECURSIVE from './readme-glob-recursive'
@@ -110,10 +114,12 @@ import UNLICENSED from './unlicensed'
110114import UTF8 from './utf8'
111115import VITEST from './vitest'
112116import VLT from './vlt'
117+ import vltCachePath from './vlt-cache-path'
113118import VLT_LOCK_JSON from './vlt-lock-json'
114119import WIN32 from './win32'
115120import YARN from './yarn'
116121import YARN_BERRY from './yarn-berry'
122+ import yarnCachePath from './yarn-cache-path'
117123import YARN_CLASSIC from './yarn-classic'
118124import yarnExecPath from './yarn-exec-path'
119125import YARN_LOCK from './yarn-lock'
@@ -136,6 +142,7 @@ declare const Constants: {
136142 readonly AT_LATEST : typeof AT_LATEST
137143 readonly BIOME_JSON : typeof BIOME_JSON
138144 readonly BUN : typeof BUN
145+ readonly bunCachePath : typeof bunCachePath
139146 readonly BUN_LOCK : typeof BUN_LOCK
140147 readonly BUN_LOCKB : typeof BUN_LOCKB
141148 readonly CI : typeof CI
@@ -183,6 +190,7 @@ declare const Constants: {
183190 readonly NODE_MODULES_GLOB_RECURSIVE : typeof NODE_MODULES_GLOB_RECURSIVE
184191 readonly NODE_VERSION : typeof NODE_VERSION
185192 readonly NPM : typeof NPM
193+ readonly npmLifecycleEvent : typeof npmLifecycleEvent
186194 readonly NPM_SHRINKWRAP_JSON : typeof NPM_SHRINKWRAP_JSON
187195 readonly NPX : typeof NPX
188196 readonly OVERRIDES : typeof OVERRIDES
@@ -193,6 +201,7 @@ declare const Constants: {
193201 readonly PACKAGE_LOCK_JSON : typeof PACKAGE_LOCK_JSON
194202 readonly PNPM : typeof PNPM
195203 readonly PNPM_LOCK_YAML : typeof PNPM_LOCK_YAML
204+ readonly pnpmStorePath : typeof pnpmStorePath
196205 readonly PRE_COMMIT : typeof PRE_COMMIT
197206 readonly README_GLOB : typeof README_GLOB
198207 readonly README_GLOB_RECURSIVE : typeof README_GLOB_RECURSIVE
@@ -225,10 +234,12 @@ declare const Constants: {
225234 readonly UTF8 : typeof UTF8
226235 readonly VITEST : typeof VITEST
227236 readonly VLT : typeof VLT
237+ readonly vltCachePath : typeof vltCachePath
228238 readonly VLT_LOCK_JSON : typeof VLT_LOCK_JSON
229239 readonly WIN32 : typeof WIN32
230240 readonly YARN : typeof YARN
231241 readonly YARN_BERRY : typeof YARN_BERRY
242+ readonly yarnCachePath : typeof yarnCachePath
232243 readonly YARN_CLASSIC : typeof YARN_CLASSIC
233244 readonly YARN_LOCK : typeof YARN_LOCK
234245 readonly abortController : typeof abortController
@@ -244,6 +255,7 @@ declare const Constants: {
244255 readonly npmExecPath : typeof npmExecPath
245256 readonly npmRealExecPath : typeof npmRealExecPath
246257 readonly packageExtensions : typeof packageExtensions
258+ readonly packageManagerCacheNames : typeof packageManagerCacheNames
247259 readonly packumentCache : typeof packumentCache
248260 readonly pacoteCachePath : typeof pacoteCachePath
249261 readonly pnpmExecPath : typeof pnpmExecPath
0 commit comments