@remotion/tailwind-v4 4.0.497 → 4.0.498

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.
@@ -1,6 +1,6 @@
1
- import type { WebpackConfiguration } from '@remotion/bundler';
1
+ import type { BundlerConfiguration } from '@remotion/bundler';
2
2
  /**
3
- * @description A function that modifies the default Webpack configuration to make the necessary changes to support Tailwind.
3
+ * @description A function that modifies the default bundler configuration to make the necessary changes to support Tailwind.
4
4
  * @see [Documentation](https://www.remotion.dev/docs/tailwind-v4/enable-tailwind)
5
5
  */
6
- export declare const enableTailwind: (currentConfiguration: WebpackConfiguration) => WebpackConfiguration;
6
+ export declare const enableTailwind: <Configuration extends BundlerConfiguration>(currentConfiguration: Configuration) => Configuration;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.enableTailwind = void 0;
4
4
  /**
5
- * @description A function that modifies the default Webpack configuration to make the necessary changes to support Tailwind.
5
+ * @description A function that modifies the default bundler configuration to make the necessary changes to support Tailwind.
6
6
  * @see [Documentation](https://www.remotion.dev/docs/tailwind-v4/enable-tailwind)
7
7
  */
8
8
  const enableTailwind = (currentConfiguration) => {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/tailwind-v4"
4
4
  },
5
5
  "name": "@remotion/tailwind-v4",
6
- "version": "4.0.497",
6
+ "version": "4.0.498",
7
7
  "description": "Enable TailwindCSS support in Remotion (TailwindCSS v4)",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -25,11 +25,11 @@
25
25
  "@tailwindcss/webpack": "4.2.0"
26
26
  },
27
27
  "peerDependencies": {
28
- "@remotion/bundler": "4.0.497"
28
+ "@remotion/bundler": "4.0.498"
29
29
  },
30
30
  "devDependencies": {
31
- "@remotion/bundler": "4.0.497",
32
- "@remotion/eslint-config-internal": "4.0.497",
31
+ "@remotion/bundler": "4.0.498",
32
+ "@remotion/eslint-config-internal": "4.0.498",
33
33
  "eslint": "9.19.0",
34
34
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
35
35
  },