MCPcopy Create free account
hub / github.com/stenciljs/core / getDevModuleCachePath

Function getDevModuleCachePath

src/compiler/bundle/dev-module.ts:182–187  ·  view source on GitHub ↗
(config: d.ValidatedConfig, parsedUrl: ParsedDevModuleUrl)

Source from the content-addressed store, hash-verified

180};
181
182const getDevModuleCachePath = (config: d.ValidatedConfig, parsedUrl: ParsedDevModuleUrl) => {
183 return join(
184 config.cacheDir,
185 `dev_module_${parsedUrl.nodeModuleId}_${parsedUrl.nodeModuleVersion}_${DEV_MODULE_CACHE_BUSTER}.log`,
186 );
187};
188
189interface ParsedDevModuleUrl {
190 nodeModuleId: string;

Callers 1

compilerRequestFunction · 0.85

Calls 1

joinFunction · 0.85

Tested by

no test coverage detected