remotion 4.0.132 → 4.0.134
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/cjs/interpolate.js +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/no-react.mjs +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/interpolate.js
CHANGED
|
@@ -60,7 +60,7 @@ function findRange(input, inputRange) {
|
|
|
60
60
|
function checkValidInputRange(arr) {
|
|
61
61
|
for (let i = 1; i < arr.length; ++i) {
|
|
62
62
|
if (!(arr[i] > arr[i - 1])) {
|
|
63
|
-
throw new Error(`inputRange must be strictly monotonically
|
|
63
|
+
throw new Error(`inputRange must be strictly monotonically increasing but got [${arr.join(',')}]`);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
}
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.0.
|
|
1
|
+
export declare const VERSION = "4.0.134";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/index.mjs
CHANGED
|
@@ -105,7 +105,7 @@ function truthy(value) {
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
// Automatically generated on publish
|
|
108
|
-
const VERSION = '4.0.
|
|
108
|
+
const VERSION = '4.0.134';
|
|
109
109
|
|
|
110
110
|
const checkMultipleRemotionVersions = () => {
|
|
111
111
|
if (typeof globalThis === 'undefined') {
|
|
@@ -1858,7 +1858,7 @@ function findRange(input, inputRange) {
|
|
|
1858
1858
|
function checkValidInputRange(arr) {
|
|
1859
1859
|
for (let i = 1; i < arr.length; ++i) {
|
|
1860
1860
|
if (!(arr[i] > arr[i - 1])) {
|
|
1861
|
-
throw new Error(`inputRange must be strictly monotonically
|
|
1861
|
+
throw new Error(`inputRange must be strictly monotonically increasing but got [${arr.join(',')}]`);
|
|
1862
1862
|
}
|
|
1863
1863
|
}
|
|
1864
1864
|
}
|
package/dist/esm/no-react.mjs
CHANGED
|
@@ -53,7 +53,7 @@ function findRange(input, inputRange) {
|
|
|
53
53
|
function checkValidInputRange(arr) {
|
|
54
54
|
for (let i = 1; i < arr.length; ++i) {
|
|
55
55
|
if (!(arr[i] > arr[i - 1])) {
|
|
56
|
-
throw new Error(`inputRange must be strictly monotonically
|
|
56
|
+
throw new Error(`inputRange must be strictly monotonically increasing but got [${arr.join(',')}]`);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
}
|
package/dist/esm/version.mjs
CHANGED