fscss 1.1.8 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/processor.js +2 -2
  2. package/package.json +1 -1
package/lib/processor.js CHANGED
@@ -23,8 +23,8 @@ export async function processFscss(css, options = {}) {
23
23
 
24
24
  if (!css.includes("exec.obj.block(all)")) {
25
25
  if(!css.includes("exec.obj.block(init lab)"))css = initlibraries(css);
26
- if(!css.includes("exec.obj.block(f import)")||!css.includes("exec.obj.block(f import pick)"))css = await impSel(css);
27
- if(!css.includes("exec.obj.block(f import)"))css = await procImp(css);
26
+ if(!css.includes("exec.obj.block(f import)")||!css.includes("exec.obj.block(f import pick)")){css = await impSel(css, {inputDir});
27
+ if(!css.includes("exec.obj.block(f import)")){css = await procImp(css, {inputDir});}
28
28
 
29
29
  if(!css.includes("exec.obj.block(store:before)")||!css.includes("exec.obj.block(store)"))css = replaceRe(css);
30
30
  if(!css.includes("exec.obj.block(ext:before)")||!css.includes("exec.obj.block(ext)"))css = procExt(css);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fscss",
3
3
  "description": "Figured Shorthand Cascading Style Sheet",
4
- "version": "1.1.8",
4
+ "version": "1.1.9",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
7
7
  "bin": {