@remotion/tailwind 4.0.177 → 4.0.178

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.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +8 -12
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @remotion/tailwind
2
+
3
+ Enable TailwindCSS support in Remotion
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/tailwind.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/tailwind?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/tailwind --save-exact
11
+ ```
12
+
13
+ When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
14
+ Remove the `^` character from the version number to use the exact version.
15
+
16
+ ## Usage
17
+
18
+ See the [documentation](https://www.remotion.dev/docs/tailwind/tailwind) for more information.
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/tailwind"
4
+ },
2
5
  "name": "@remotion/tailwind",
3
- "version": "4.0.177",
4
- "description": "Utilities for using tailwind css in Remotion",
6
+ "version": "4.0.178",
7
+ "description": "Enable TailwindCSS support in Remotion",
5
8
  "main": "dist/cjs/index.js",
6
9
  "types": "dist/cjs/index.d.ts",
7
10
  "module": "dist/esm/index.mjs",
@@ -9,9 +12,6 @@
9
12
  "author": "Jonny Burger <jonny@remotion.dev>",
10
13
  "contributors": [],
11
14
  "license": "MIT",
12
- "repository": {
13
- "url": "https://github.com/remotion-dev/remotion"
14
- },
15
15
  "bugs": {
16
16
  "url": "https://github.com/remotion-dev/remotion/issues"
17
17
  },
@@ -25,16 +25,11 @@
25
25
  "tailwindcss": "^3.3.2"
26
26
  },
27
27
  "peerDependencies": {
28
- "@remotion/bundler": "4.0.177"
28
+ "@remotion/bundler": "4.0.178"
29
29
  },
30
30
  "devDependencies": {
31
- "@jonny/eslint-config": "3.0.281",
32
- "@types/node": "18.14.6",
33
31
  "autoprefixer": "^10.4.14",
34
- "eslint": "8.56.0",
35
- "prettier": "3.2.5",
36
- "prettier-plugin-organize-imports": "3.2.4",
37
- "@remotion/bundler": "4.0.177"
32
+ "@remotion/bundler": "4.0.178"
38
33
  },
39
34
  "keywords": [
40
35
  "remotion",
@@ -52,6 +47,7 @@
52
47
  "require": "./dist/cjs/index.js"
53
48
  }
54
49
  },
50
+ "homepage": "https://www.remotion.dev/docs/tailwind/tailwind",
55
51
  "scripts": {
56
52
  "lint": "eslint src --ext ts,tsx",
57
53
  "build": "bun --env-file=../.env.bundle bundle.ts"