leanweb 1.0.6 → 1.0.7

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/commands/build.js CHANGED
@@ -117,7 +117,7 @@
117
117
  const scssFileExists = fs.existsSync(scssFilename);
118
118
  let cssString = '';
119
119
  if (scssFileExists) {
120
- let scssString = `@import "global-styles.scss";\n`;
120
+ let scssString = `@use "global-styles.scss";\n`;
121
121
  scssString += fs.readFileSync(scssFilename, 'utf8');
122
122
  scssString += '\n[lw-false],[lw-for]{display:none !important;}\n';
123
123
  cssString = utils.buildCSS(scssString, `${projectPath}/${buildDir}/components/${cmp}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leanweb",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Builds framework agnostic web components.",
5
5
  "bin": {
6
6
  "leanweb": "leanweb.js",
@@ -29,15 +29,15 @@
29
29
  "fs-extra": "^10.0.0",
30
30
  "globby": "^11.0.4",
31
31
  "html-minifier": "^4.0.0",
32
- "isomorphic-git": "^1.10.2",
32
+ "isomorphic-git": "^1.10.3",
33
33
  "json5-loader": "^4.0.1",
34
34
  "node-watch": "^0.7.2",
35
35
  "parse5": "^6.0.1",
36
36
  "raw-loader": "^4.0.2",
37
- "sass": "^1.45.0",
37
+ "sass": "^1.45.1",
38
38
  "sass-loader": "^12.4.0",
39
39
  "semver": "^7.3.5",
40
40
  "webpack": "^5.65.0",
41
- "webpack-dev-server": "^4.6.0"
41
+ "webpack-dev-server": "^4.7.1"
42
42
  }
43
43
  }