balm-core 4.22.0 → 4.22.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.
@@ -2,7 +2,7 @@ import path from 'node:path';
2
2
  import fs from 'node:fs';
3
3
  // Reference `gulp-sass@5.1.0`
4
4
  import { Transform } from 'node:stream';
5
- import sass from 'sass';
5
+ import * as sass from 'sass';
6
6
  import replaceExtension from 'replace-ext';
7
7
  import stripAnsi from 'strip-ansi';
8
8
  import applySourceMap from 'vinyl-sourcemaps-apply';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balm-core",
3
- "version": "4.22.0",
3
+ "version": "4.22.1",
4
4
  "description": "BalmJS compiler core",
5
5
  "keywords": [
6
6
  "balm",
@@ -121,5 +121,5 @@
121
121
  "engines": {
122
122
  "node": ">=16"
123
123
  },
124
- "gitHead": "f37af7316c3f4e9dba78deea6d4b6df824fafe33"
124
+ "gitHead": "ab3af9d04a485cf0ffa666c9bde1ea3930efbfae"
125
125
  }
@@ -1,7 +1,7 @@
1
1
  import path from 'node:path';
2
2
  import fs from 'node:fs';
3
3
  import { Transform } from 'node:stream';
4
- import sass from 'sass';
4
+ import * as sass from 'sass';
5
5
  import replaceExtension from 'replace-ext';
6
6
  import stripAnsi from 'strip-ansi';
7
7
  import applySourceMap from 'vinyl-sourcemaps-apply';