sheetloaf 1.26.0-beta.0 → 1.26.0-beta.1

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/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -41,7 +41,7 @@ const chokidar_1 = __importDefault(require("chokidar"));
41
41
  const picocolors_1 = __importDefault(require("picocolors"));
42
42
  const fs_1 = __importDefault(require("fs"));
43
43
  const path_1 = __importDefault(require("path"));
44
- const sass_embedded_1 = __importDefault(require("sass-embedded"));
44
+ const sass_embedded_1 = require("sass-embedded");
45
45
  const postcss_1 = __importDefault(require("postcss"));
46
46
  const configs = __importStar(require("./configs"));
47
47
  const fileFinder = __importStar(require("./fileFinder"));
@@ -66,10 +66,10 @@ sheetloaf
66
66
  postcssConfig = configs.generatePostcssConfigFromFile(sheetloaf.opts().config);
67
67
  }
68
68
  if (sheetloaf.opts().async === true) {
69
- sassAsyncCompiler = yield sass_embedded_1.default.initAsyncCompiler();
69
+ sassAsyncCompiler = yield (0, sass_embedded_1.initAsyncCompiler)();
70
70
  }
71
71
  else {
72
- sassCompiler = sass_embedded_1.default.initCompiler();
72
+ sassCompiler = (0, sass_embedded_1.initCompiler)();
73
73
  }
74
74
  if (source.length > 0) {
75
75
  renderAllFiles(source);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sheetloaf",
3
- "version": "1.26.0-beta.0",
3
+ "version": "1.26.0-beta.1",
4
4
  "description": "freshmade stylesheets for the whole family.",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {