@vanilla-extract/integration
Advanced tools
Comparing version 0.0.0-create-compiler-api-202325225311 to 0.0.0-create-compiler-api-2023264641
@@ -636,3 +636,7 @@ 'use strict'; | ||
const outputCss = (_options$outputCss = options.outputCss) !== null && _options$outputCss !== void 0 ? _options$outputCss : true; | ||
let cachedFile = processVanillaFileCache.get(filePath); | ||
const cacheKey = Object.entries({ | ||
filePath, | ||
outputCss | ||
}).map(entry => entry.join('=')).join('|'); | ||
let cachedFile = processVanillaFileCache.get(cacheKey); | ||
if (cachedFile) { | ||
@@ -736,3 +740,3 @@ let moduleNode = server.moduleGraph.getModuleById(filePath); | ||
}; | ||
processVanillaFileCache.set(filePath, { | ||
processVanillaFileCache.set(cacheKey, { | ||
lastInvalidationTimestamp, | ||
@@ -739,0 +743,0 @@ result |
@@ -636,3 +636,7 @@ 'use strict'; | ||
const outputCss = (_options$outputCss = options.outputCss) !== null && _options$outputCss !== void 0 ? _options$outputCss : true; | ||
let cachedFile = processVanillaFileCache.get(filePath); | ||
const cacheKey = Object.entries({ | ||
filePath, | ||
outputCss | ||
}).map(entry => entry.join('=')).join('|'); | ||
let cachedFile = processVanillaFileCache.get(cacheKey); | ||
if (cachedFile) { | ||
@@ -736,3 +740,3 @@ let moduleNode = server.moduleGraph.getModuleById(filePath); | ||
}; | ||
processVanillaFileCache.set(filePath, { | ||
processVanillaFileCache.set(cacheKey, { | ||
lastInvalidationTimestamp, | ||
@@ -739,0 +743,0 @@ result |
{ | ||
"name": "@vanilla-extract/integration", | ||
"version": "0.0.0-create-compiler-api-202325225311", | ||
"version": "0.0.0-create-compiler-api-2023264641", | ||
"description": "Zero-runtime Stylesheets-in-TypeScript", | ||
@@ -20,3 +20,3 @@ "main": "dist/vanilla-extract-integration.cjs.js", | ||
"@vanilla-extract/babel-plugin-debug-ids": "^1.0.2", | ||
"@vanilla-extract/css": "^0.0.0-create-compiler-api-202325225311", | ||
"@vanilla-extract/css": "^0.0.0-create-compiler-api-2023264641", | ||
"esbuild": "0.17.6", | ||
@@ -23,0 +23,0 @@ "eval": "0.1.6", |
58824
1611