malinajs 0.6.56 → 0.7.0-a5

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.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,6 @@
1
1
 
2
2
  ## 0.6.x
3
3
 
4
- * destruncting for "each" for array and object
5
4
  * style's attribute "global"
6
5
  * compound classes (handle mix of class and class directives)
7
6
  * new passing class
package/malina-esbuild.js CHANGED
@@ -76,13 +76,13 @@ function malinaPlugin(options={}){
76
76
  });
77
77
 
78
78
  let code = ctx.result;
79
-
79
+
80
80
  if(ctx.css.result){
81
81
  const cssPath = args.path.replace(/\.\w+$/, ".malina.css").replace(/\\/g, "/");
82
82
  cssModules.set(cssPath,ctx.css.result);
83
83
  code += `\nimport "${cssPath}";`
84
84
  }
85
-
85
+
86
86
  return { contents: code }
87
87
  }
88
88
  );