balm-core 4.17.1 → 4.18.0

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.
@@ -88,7 +88,12 @@ function cssLoader() {
88
88
  }
89
89
  }, 'sass-loader', {
90
90
  // Prefer `dart-sass`
91
- implementation: requireModule.resolve('sass')
91
+ implementation: requireModule.resolve('sass'),
92
+ sassOptions: Object.assign({
93
+ includePaths: BalmJS.file.stylePaths,
94
+ outputStyle: 'expanded',
95
+ quietDeps: BalmJS.config.logs.level < BalmJS.LogLevel.Warn
96
+ }, BalmJS.config.styles.sassOptions)
92
97
  }),
93
98
  // Don't consider CSS imports dead code even if the
94
99
  // containing package claims to have no side effects.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balm-core",
3
- "version": "4.17.1",
3
+ "version": "4.18.0",
4
4
  "description": "BalmJS compiler core",
5
5
  "keywords": [
6
6
  "balm",
@@ -120,5 +120,5 @@
120
120
  "engines": {
121
121
  "node": ">=16"
122
122
  },
123
- "gitHead": "5b82d0d95bb34d10a4ace4575d2949a23e06579f"
123
+ "gitHead": "6d1a813df5ac474dfece8749cd69a17930cd280d"
124
124
  }
@@ -79,7 +79,12 @@ function cssLoader() {
79
79
  mode: 'icss'
80
80
  }
81
81
  }, 'sass-loader', {
82
- implementation: requireModule.resolve('sass')
82
+ implementation: requireModule.resolve('sass'),
83
+ sassOptions: Object.assign({
84
+ includePaths: BalmJS.file.stylePaths,
85
+ outputStyle: 'expanded',
86
+ quietDeps: BalmJS.config.logs.level < BalmJS.LogLevel.Warn
87
+ }, BalmJS.config.styles.sassOptions)
83
88
  }),
84
89
  sideEffects: true
85
90
  }