Comparing version 1.4.35 to 1.4.36
@@ -31,2 +31,1 @@ #!/usr/bin/env node | ||
} | ||
//# sourceMappingURL=esifycss.js.map |
@@ -27,2 +27,1 @@ "use strict"; | ||
exports.loadParameters = loadParameters; | ||
//# sourceMappingURL=loadParameters.js.map |
@@ -67,2 +67,1 @@ "use strict"; | ||
__exportStar(require("./util/wait"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -10,2 +10,1 @@ "use strict"; | ||
exports.isArrayExpression = isArrayExpression; | ||
//# sourceMappingURL=ast.js.map |
@@ -13,2 +13,1 @@ "use strict"; | ||
exports.createOptimizedIdGenerator = createOptimizedIdGenerator; | ||
//# sourceMappingURL=createOptimizedIdGenerator.js.map |
@@ -36,2 +36,1 @@ "use strict"; | ||
exports.extractCSSFromArrayExpression = extractCSSFromArrayExpression; | ||
//# sourceMappingURL=extractCSSFromArrayExpression.js.map |
@@ -44,2 +44,1 @@ "use strict"; | ||
exports.findAddStyleImport = findAddStyleImport; | ||
//# sourceMappingURL=findAddStyleImport.js.map |
@@ -18,2 +18,1 @@ "use strict"; | ||
exports.minifyCSSInScript = minifyCSSInScript; | ||
//# sourceMappingURL=minifyCSSInScript.js.map |
@@ -22,2 +22,1 @@ "use strict"; | ||
exports.minifyScripts = minifyScripts; | ||
//# sourceMappingURL=minifyScripts.js.map |
@@ -33,2 +33,1 @@ "use strict"; | ||
exports.minifyScriptsForCSS = minifyScriptsForCSS; | ||
//# sourceMappingURL=minifyScriptsForCSS.js.map |
@@ -39,2 +39,1 @@ "use strict"; | ||
exports.parseCSSModuleScript = parseCSSModuleScript; | ||
//# sourceMappingURL=parseCSSModuleScript.js.map |
@@ -39,2 +39,1 @@ "use strict"; | ||
exports.parseScripts = parseScripts; | ||
//# sourceMappingURL=parseScripts.js.map |
@@ -15,2 +15,1 @@ "use strict"; | ||
exports.setDictionary = setDictionary; | ||
//# sourceMappingURL=setDictionary.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
"use strict"; | ||
module.exports = require('acorn-walk'); | ||
//# sourceMappingURL=walker.js.map |
@@ -27,2 +27,1 @@ "use strict"; | ||
exports.createTransformer = createTransformer; | ||
//# sourceMappingURL=createTransformer.js.map |
@@ -24,2 +24,1 @@ "use strict"; | ||
exports.getDependencies = getDependencies; | ||
//# sourceMappingURL=getDependencies.js.map |
@@ -21,2 +21,1 @@ "use strict"; | ||
exports.getImports = getImports; | ||
//# sourceMappingURL=getImports.js.map |
@@ -15,2 +15,1 @@ "use strict"; | ||
exports.getMatchedImport = getMatchedImport; | ||
//# sourceMappingURL=getMatchedImport.js.map |
@@ -19,2 +19,1 @@ "use strict"; | ||
exports.getPluginConfiguration = getPluginConfiguration; | ||
//# sourceMappingURL=getPluginConfiguration.js.map |
@@ -43,2 +43,1 @@ "use strict"; | ||
exports.mangleIdentifiers = mangleIdentifiers; | ||
//# sourceMappingURL=mangleIdentifiers.js.map |
@@ -32,2 +32,1 @@ "use strict"; | ||
exports.mangleKeyFrames = mangleKeyFrames; | ||
//# sourceMappingURL=mangleKeyFrames.js.map |
@@ -40,2 +40,1 @@ "use strict"; | ||
exports.minify = minify; | ||
//# sourceMappingURL=minify.js.map |
@@ -23,2 +23,1 @@ "use strict"; | ||
exports.parseImport = parseImport; | ||
//# sourceMappingURL=parseImport.js.map |
@@ -9,9 +9,14 @@ "use strict"; | ||
const transform = (0, createTransformer_1.createTransformer)((0, getPluginConfiguration_1.getPluginConfiguration)(props)); | ||
const cache = new WeakMap(); | ||
return { | ||
postcssPlugin: exports.PluginName, | ||
Root: async (root, { result }) => { | ||
result.warn(JSON.stringify(await transform(root, result))); | ||
let cached = cache.get(root); | ||
if (!cached) { | ||
cached = JSON.stringify(await transform(root, result)); | ||
cache.set(root, cached); | ||
} | ||
result.warn(cached); | ||
}, | ||
}; | ||
}, { postcss: true }); | ||
//# sourceMappingURL=plugin.js.map |
@@ -22,2 +22,1 @@ "use strict"; | ||
exports.removeImportsAndRaws = removeImportsAndRaws; | ||
//# sourceMappingURL=removeImportsAndRaws.js.map |
@@ -45,2 +45,1 @@ "use strict"; | ||
exports.transformDeclarations = transformDeclarations; | ||
//# sourceMappingURL=transformDeclarations.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -22,2 +22,1 @@ "use strict"; | ||
exports.extractPluginResult = extractPluginResult; | ||
//# sourceMappingURL=extractPluginResult.js.map |
@@ -24,2 +24,1 @@ "use strict"; | ||
exports.generateScript = generateScript; | ||
//# sourceMappingURL=generateScript.js.map |
@@ -24,2 +24,1 @@ "use strict"; | ||
exports.getChokidarOptions = getChokidarOptions; | ||
//# sourceMappingURL=getChokidarOptions.js.map |
@@ -16,2 +16,1 @@ "use strict"; | ||
exports.getCSSParserConfiguration = getCSSParserConfiguration; | ||
//# sourceMappingURL=getCSSParserConfiguration.js.map |
@@ -18,2 +18,1 @@ "use strict"; | ||
exports.getExtensionOption = getExtensionOption; | ||
//# sourceMappingURL=getExtensionOption.js.map |
@@ -21,2 +21,1 @@ "use strict"; | ||
exports.getIncludePatterns = getIncludePatterns; | ||
//# sourceMappingURL=getIncludePatterns.js.map |
@@ -20,2 +20,1 @@ "use strict"; | ||
exports.getOutputOption = getOutputOption; | ||
//# sourceMappingURL=getOutputOption.js.map |
@@ -33,2 +33,1 @@ "use strict"; | ||
exports.getSessionConfiguration = getSessionConfiguration; | ||
//# sourceMappingURL=getSessionConfiguration.js.map |
@@ -11,2 +11,1 @@ "use strict"; | ||
exports.parseCSS = parseCSS; | ||
//# sourceMappingURL=parseCSS.js.map |
@@ -181,2 +181,1 @@ "use strict"; | ||
exports.Session = Session; | ||
//# sourceMappingURL=Session.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -15,2 +15,1 @@ "use strict"; | ||
exports.waitForInitialScanCompletion = waitForInitialScanCompletion; | ||
//# sourceMappingURL=waitForInitialScanCompletion.js.map |
@@ -17,2 +17,1 @@ "use strict"; | ||
exports.createExposedPromise = createExposedPromise; | ||
//# sourceMappingURL=createExposedPromise.js.map |
@@ -27,2 +27,1 @@ "use strict"; | ||
exports.createIdentifier = createIdentifier; | ||
//# sourceMappingURL=createIdGenerator.js.map |
@@ -84,2 +84,1 @@ "use strict"; | ||
exports.createSandbox = createSandbox; | ||
//# sourceMappingURL=createSandbox.for-test.js.map |
@@ -14,2 +14,1 @@ "use strict"; | ||
exports.createTemporaryDirectory = createTemporaryDirectory; | ||
//# sourceMappingURL=createTemporaryDirectory.js.map |
@@ -30,2 +30,1 @@ "use strict"; | ||
exports.deleteFile = deleteFile; | ||
//# sourceMappingURL=deleteFile.js.map |
@@ -16,2 +16,1 @@ "use strict"; | ||
exports.decodeString = decodeString; | ||
//# sourceMappingURL=encodeString.js.map |
@@ -11,2 +11,1 @@ "use strict"; | ||
exports.ensureArray = ensureArray; | ||
//# sourceMappingURL=ensureArray.js.map |
@@ -13,2 +13,1 @@ "use strict"; | ||
exports.getBase64UrlHash = getBase64UrlHash; | ||
//# sourceMappingURL=getBase64UrlHash.js.map |
@@ -12,2 +12,1 @@ "use strict"; | ||
exports.ignoreNoEntryError = ignoreNoEntryError; | ||
//# sourceMappingURL=ignoreNoEntryError.js.map |
@@ -12,2 +12,1 @@ "use strict"; | ||
exports.isRecordLike = isRecordLike; | ||
//# sourceMappingURL=isRecordLike.js.map |
@@ -6,2 +6,1 @@ "use strict"; | ||
exports.normalizePath = normalizePath; | ||
//# sourceMappingURL=normalizePath.js.map |
"use strict"; | ||
exports.postcss = require('postcss'); | ||
//# sourceMappingURL=postcss.js.map |
@@ -29,2 +29,1 @@ "use strict"; | ||
exports.runCode = runCode; | ||
//# sourceMappingURL=runCode.for-test.js.map |
@@ -14,2 +14,1 @@ "use strict"; | ||
exports.serialize = serialize; | ||
//# sourceMappingURL=serialize.js.map |
@@ -27,2 +27,1 @@ "use strict"; | ||
exports.tokenizeString = tokenizeString; | ||
//# sourceMappingURL=tokenizeString.js.map |
@@ -23,2 +23,1 @@ "use strict"; | ||
}; | ||
//# sourceMappingURL=updateFile.js.map |
@@ -10,2 +10,1 @@ "use strict"; | ||
exports.wait = wait; | ||
//# sourceMappingURL=wait.js.map |
{ | ||
"name": "esifycss", | ||
"version": "1.4.35", | ||
"version": "1.4.36", | ||
"description": "Generates .js or .ts exports class names and custom properties", | ||
@@ -57,7 +57,7 @@ "author": { | ||
"chokidar": "3.5.2", | ||
"commander": "8.2.0", | ||
"postcss": "8.3.7", | ||
"commander": "8.3.0", | ||
"postcss": "8.3.11", | ||
"postcss-selector-parser": "6.0.6", | ||
"vlq": "1.0.1" | ||
"vlq": "2.0.4" | ||
} | ||
} |
11
102053
124
2019
+ Addedcommander@8.3.0(transitive)
+ Addedpicocolors@1.1.1(transitive)
+ Addedpostcss@8.3.11(transitive)
+ Addedvlq@2.0.4(transitive)
- Removedcommander@8.2.0(transitive)
- Removednanocolors@0.1.12(transitive)
- Removedpostcss@8.3.7(transitive)
- Removedvlq@1.0.1(transitive)
Updatedcommander@8.3.0
Updatedpostcss@8.3.11
Updatedvlq@2.0.4