@remotion/enable-scss 4.0.466 → 4.0.468

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.
@@ -18,6 +18,7 @@ const enableScss = (currentConfiguration) => {
18
18
  options: {
19
19
  modules: {
20
20
  localIdentName: '[name]__[local]__[hash:base64:5]', // Keeps class names readable
21
+ namedExport: false,
21
22
  },
22
23
  },
23
24
  },
@@ -17,7 +17,8 @@ var enableScss = (currentConfiguration) => {
17
17
  loader: __require.resolve("css-loader"),
18
18
  options: {
19
19
  modules: {
20
- localIdentName: "[name]__[local]__[hash:base64:5]"
20
+ localIdentName: "[name]__[local]__[hash:base64:5]",
21
+ namedExport: false
21
22
  }
22
23
  }
23
24
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/enable-scss"
4
4
  },
5
5
  "name": "@remotion/enable-scss",
6
- "version": "4.0.466",
6
+ "version": "4.0.468",
7
7
  "description": "Enable SCSS support in Remotion",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -22,15 +22,15 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "style-loader": "4.0.0",
25
- "css-loader": "5.2.7",
25
+ "css-loader": "7.1.4",
26
26
  "sass-loader": "14.2.1"
27
27
  },
28
28
  "peerDependencies": {
29
- "@remotion/bundler": "4.0.466"
29
+ "@remotion/bundler": "4.0.468"
30
30
  },
31
31
  "devDependencies": {
32
- "@remotion/bundler": "4.0.466",
33
- "@remotion/eslint-config-internal": "4.0.466",
32
+ "@remotion/bundler": "4.0.468",
33
+ "@remotion/eslint-config-internal": "4.0.468",
34
34
  "eslint": "9.19.0",
35
35
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
36
36
  },