create-video 4.0.278 → 4.0.279
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/dist/esm/index.mjs +2 -2
- package/dist/templates.js +2 -2
- package/package.json +2 -2
- package/dist/strip-ansi.d.ts +0 -1
- package/dist/strip-ansi.js +0 -21
package/dist/esm/index.mjs
CHANGED
|
@@ -178,7 +178,7 @@ var FEATURED_TEMPLATES = [
|
|
|
178
178
|
cliId: "blank",
|
|
179
179
|
type: "video",
|
|
180
180
|
defaultBranch: "main",
|
|
181
|
-
featuredOnHomePage:
|
|
181
|
+
featuredOnHomePage: "Blank",
|
|
182
182
|
previewURL: "https://template-empty.vercel.app/?/MyComp",
|
|
183
183
|
templateInMonorepo: "template-blank",
|
|
184
184
|
allowEnableTailwind: true
|
|
@@ -198,7 +198,7 @@ var FEATURED_TEMPLATES = [
|
|
|
198
198
|
cliId: "javascript",
|
|
199
199
|
type: "video",
|
|
200
200
|
defaultBranch: "main",
|
|
201
|
-
featuredOnHomePage:
|
|
201
|
+
featuredOnHomePage: null,
|
|
202
202
|
previewURL: "https://template-helloworld-javascript.vercel.app/?/HelloWorld",
|
|
203
203
|
templateInMonorepo: "template-javascript",
|
|
204
204
|
allowEnableTailwind: true
|
package/dist/templates.js
CHANGED
|
@@ -100,7 +100,7 @@ exports.FEATURED_TEMPLATES = [
|
|
|
100
100
|
cliId: 'blank',
|
|
101
101
|
type: 'video',
|
|
102
102
|
defaultBranch: 'main',
|
|
103
|
-
featuredOnHomePage:
|
|
103
|
+
featuredOnHomePage: 'Blank',
|
|
104
104
|
previewURL: 'https://template-empty.vercel.app/?/MyComp',
|
|
105
105
|
templateInMonorepo: 'template-blank',
|
|
106
106
|
allowEnableTailwind: true,
|
|
@@ -120,7 +120,7 @@ exports.FEATURED_TEMPLATES = [
|
|
|
120
120
|
cliId: 'javascript',
|
|
121
121
|
type: 'video',
|
|
122
122
|
defaultBranch: 'main',
|
|
123
|
-
featuredOnHomePage:
|
|
123
|
+
featuredOnHomePage: null,
|
|
124
124
|
previewURL: 'https://template-helloworld-javascript.vercel.app/?/HelloWorld',
|
|
125
125
|
templateInMonorepo: 'template-javascript',
|
|
126
126
|
allowEnableTailwind: true,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/create-video"
|
|
4
4
|
},
|
|
5
5
|
"name": "create-video",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.279",
|
|
7
7
|
"description": "Create a new Remotion project",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/tar": "6.1.1",
|
|
28
28
|
"react": "19.0.0",
|
|
29
29
|
"eslint": "9.19.0",
|
|
30
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
30
|
+
"@remotion/eslint-config-internal": "4.0.279"
|
|
31
31
|
},
|
|
32
32
|
"exports": {
|
|
33
33
|
"./package.json": "./package.json",
|
package/dist/strip-ansi.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const stripAnsi: (str: string) => string;
|
package/dist/strip-ansi.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.stripAnsi = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* Code inlined from https://github.com/chalk/strip-ansi#readme
|
|
6
|
-
* This file is MIT licensed.
|
|
7
|
-
*/
|
|
8
|
-
const ansiRegex = () => {
|
|
9
|
-
const pattern = [
|
|
10
|
-
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
|
11
|
-
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))',
|
|
12
|
-
].join('|');
|
|
13
|
-
return new RegExp(pattern, 'g');
|
|
14
|
-
};
|
|
15
|
-
const stripAnsi = (str) => {
|
|
16
|
-
if (typeof str !== 'string') {
|
|
17
|
-
throw new TypeError(`Expected a \`string\`, got \`${typeof str}\``);
|
|
18
|
-
}
|
|
19
|
-
return str.replace(ansiRegex(), '');
|
|
20
|
-
};
|
|
21
|
-
exports.stripAnsi = stripAnsi;
|