@remotion/tailwind 4.0.213 → 4.0.214
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/tailwind"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/tailwind",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.214",
|
|
7
7
|
"description": "Enable TailwindCSS support in Remotion",
|
|
8
8
|
"main": "dist/cjs/index.js",
|
|
9
9
|
"types": "dist/cjs/index.d.ts",
|
|
@@ -16,20 +16,20 @@
|
|
|
16
16
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"autoprefixer": "
|
|
19
|
+
"autoprefixer": "10.4.20",
|
|
20
20
|
"css-loader": "5.2.7",
|
|
21
|
-
"postcss": "
|
|
21
|
+
"postcss": "8.4.47",
|
|
22
22
|
"postcss-loader": "^7.3.0",
|
|
23
23
|
"postcss-preset-env": "^8.3.2",
|
|
24
24
|
"style-loader": "2.0.0",
|
|
25
|
-
"tailwindcss": "
|
|
25
|
+
"tailwindcss": "3.4.13"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@remotion/bundler": "4.0.
|
|
28
|
+
"@remotion/bundler": "4.0.214"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"autoprefixer": "
|
|
32
|
-
"@remotion/bundler": "4.0.
|
|
31
|
+
"autoprefixer": "10.4.20",
|
|
32
|
+
"@remotion/bundler": "4.0.214"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"remotion",
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
"homepage": "https://www.remotion.dev/docs/tailwind/tailwind",
|
|
51
51
|
"scripts": {
|
|
52
52
|
"lint": "eslint src --ext ts,tsx",
|
|
53
|
-
"
|
|
53
|
+
"make": "bun --env-file=../.env.bundle bundle.ts"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.findRemotionRoot = exports.findClosestPackageJson = void 0;
|
|
7
|
-
const node_fs_1 = __importDefault(require("node:fs"));
|
|
8
|
-
const node_path_1 = __importDefault(require("node:path"));
|
|
9
|
-
const recursionLimit = 5;
|
|
10
|
-
const findClosestPackageJson = () => {
|
|
11
|
-
let currentDir = process.cwd();
|
|
12
|
-
let possiblePackageJson = '';
|
|
13
|
-
for (let i = 0; i < recursionLimit; i++) {
|
|
14
|
-
possiblePackageJson = node_path_1.default.join(currentDir, 'package.json');
|
|
15
|
-
const exists = node_fs_1.default.existsSync(possiblePackageJson);
|
|
16
|
-
if (exists) {
|
|
17
|
-
return possiblePackageJson;
|
|
18
|
-
}
|
|
19
|
-
currentDir = node_path_1.default.dirname(currentDir);
|
|
20
|
-
}
|
|
21
|
-
return null;
|
|
22
|
-
};
|
|
23
|
-
exports.findClosestPackageJson = findClosestPackageJson;
|
|
24
|
-
const findRemotionRoot = () => {
|
|
25
|
-
const closestPackageJson = (0, exports.findClosestPackageJson)();
|
|
26
|
-
if (closestPackageJson === null) {
|
|
27
|
-
return process.cwd();
|
|
28
|
-
}
|
|
29
|
-
return node_path_1.default.dirname(closestPackageJson);
|
|
30
|
-
};
|
|
31
|
-
exports.findRemotionRoot = findRemotionRoot;
|