summaryrefslogtreecommitdiff
path: root/node_modules/postcss-import/lib/assign-layer-names.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/postcss-import/lib/assign-layer-names.js')
-rw-r--r--node_modules/postcss-import/lib/assign-layer-names.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/postcss-import/lib/assign-layer-names.js b/node_modules/postcss-import/lib/assign-layer-names.js
new file mode 100644
index 0000000..18cfcc7
--- /dev/null
+++ b/node_modules/postcss-import/lib/assign-layer-names.js
@@ -0,0 +1,17 @@
+"use strict"
+
+module.exports = function (layer, node, state, options) {
+ layer.forEach((layerPart, i) => {
+ if (layerPart.trim() === "") {
+ if (options.nameLayer) {
+ layer[i] = options
+ .nameLayer(state.anonymousLayerCounter++, state.rootFilename)
+ .toString()
+ } else {
+ throw node.error(
+ `When using anonymous layers in @import you must also set the "nameLayer" plugin option`
+ )
+ }
+ }
+ })
+}