@remotion/enable-scss 4.0.364 → 4.0.365

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/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.364",
6
+ "version": "4.0.365",
7
7
  "description": "Enable SCSS support in Remotion",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -26,11 +26,11 @@
26
26
  "sass-loader": "14.2.1"
27
27
  },
28
28
  "peerDependencies": {
29
- "@remotion/bundler": "4.0.364"
29
+ "@remotion/bundler": "4.0.365"
30
30
  },
31
31
  "devDependencies": {
32
- "@remotion/bundler": "4.0.364",
33
- "@remotion/eslint-config-internal": "4.0.364",
32
+ "@remotion/bundler": "4.0.365",
33
+ "@remotion/eslint-config-internal": "4.0.365",
34
34
  "eslint": "9.19.0"
35
35
  },
36
36
  "keywords": [
package/bundle.ts DELETED
@@ -1,24 +0,0 @@
1
- import {build} from 'bun';
2
-
3
- if (process.env.NODE_ENV !== 'production') {
4
- throw new Error('This script must be run using NODE_ENV=production');
5
- }
6
-
7
- const output = await build({
8
- entrypoints: ['src/index.ts'],
9
- naming: '[name].mjs',
10
- target: 'node',
11
- external: ['sass', 'sass-loader', 'css-loader', 'style-loader'],
12
- });
13
-
14
- if (!output.success) {
15
- console.log(output.logs);
16
- throw new Error('Build failed');
17
- }
18
-
19
- const [file] = output.outputs;
20
- const text = await file.text();
21
-
22
- await Bun.write('dist/esm/index.mjs', text);
23
-
24
- export {};
package/eslint.config.mjs DELETED
@@ -1,7 +0,0 @@
1
- import {remotionFlatConfig} from '@remotion/eslint-config-internal';
2
-
3
- const config = remotionFlatConfig({react: false});
4
-
5
- export default {
6
- ...config,
7
- };