@remotion/studio 4.0.320 → 4.0.322
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/.turbo/turbo-make.log +2 -2
- package/dist/esm/{chunk-xg9wh6m7.js → chunk-n77gaszd.js} +6 -6
- package/dist/esm/internals.mjs +6 -6
- package/dist/esm/previewEntry.mjs +6 -6
- package/dist/esm/renderEntry.mjs +1 -1
- package/package.json +10 -10
- package/.turbo/turbo-formatting.log +0 -7
- package/.turbo/turbo-lint.log +0 -31
- package/dist/esm/chunk-3jqyahs2.js +0 -46463
- package/dist/esm/chunk-3tgprk7m.js +0 -46464
- package/dist/esm/chunk-4phrjdda.js +0 -46309
- package/dist/esm/chunk-b7c5kwga.js +0 -46309
- package/dist/esm/chunk-bgfkgcmg.js +0 -25
- package/dist/esm/chunk-brdwm7nh.js +0 -29720
- package/dist/esm/chunk-brwvbj4j.js +0 -46309
- package/tsconfig.tsbuildinfo +0 -1
package/.turbo/turbo-make.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @remotion/studio@4.0.
|
|
3
|
+
> @remotion/studio@4.0.322 make /Users/jonathanburger/remotion/packages/studio
|
|
4
4
|
> tsc -d && bun --env-file=../.env.bundle bundle.ts
|
|
5
5
|
|
|
6
|
-
[0m[2m[[
|
|
6
|
+
[0m[2m[[1m458.88ms[0m[2m][0m Generated.
|
|
@@ -31428,7 +31428,7 @@ var calculateJumpMarks = (samplePositionTracks, endOfMdat) => {
|
|
|
31428
31428
|
progresses[track[0].track.trackId] = 0;
|
|
31429
31429
|
}
|
|
31430
31430
|
const jumpMarks = [];
|
|
31431
|
-
const allSamplesSortedByOffset = samplePositionTracks.flat(1).sort((a, b) => a.samplePosition.offset - b.samplePosition.offset);
|
|
31431
|
+
const allSamplesSortedByOffset = samplePositionTracks.flat(1).filter((s) => s.track.type === "audio" || s.track.type === "video").sort((a, b) => a.samplePosition.offset - b.samplePosition.offset);
|
|
31432
31432
|
let indexToVisit = 0;
|
|
31433
31433
|
const visited = new Set;
|
|
31434
31434
|
let rollOverToProcess = false;
|
|
@@ -35076,9 +35076,9 @@ var parseWav = (state) => {
|
|
|
35076
35076
|
if (insideMediaSection === "in-section") {
|
|
35077
35077
|
return parseMediaSection2({ state });
|
|
35078
35078
|
}
|
|
35079
|
-
const type = iterator.getByteString(4, false);
|
|
35079
|
+
const type = iterator.getByteString(4, false).toLowerCase();
|
|
35080
35080
|
Log.trace(state.logLevel, `Processing box type ${type}`);
|
|
35081
|
-
if (type === "
|
|
35081
|
+
if (type === "riff") {
|
|
35082
35082
|
return parseHeader({ state });
|
|
35083
35083
|
}
|
|
35084
35084
|
if (type === "fmt") {
|
|
@@ -35087,13 +35087,13 @@ var parseWav = (state) => {
|
|
|
35087
35087
|
if (type === "data") {
|
|
35088
35088
|
return parseData({ state });
|
|
35089
35089
|
}
|
|
35090
|
-
if (type === "
|
|
35090
|
+
if (type === "list") {
|
|
35091
35091
|
return parseList({ state });
|
|
35092
35092
|
}
|
|
35093
|
-
if (type === "id3"
|
|
35093
|
+
if (type === "id3") {
|
|
35094
35094
|
return parseId32({ state });
|
|
35095
35095
|
}
|
|
35096
|
-
if (type === "
|
|
35096
|
+
if (type === "junk" || type === "fllr") {
|
|
35097
35097
|
return parseJunk({ state });
|
|
35098
35098
|
}
|
|
35099
35099
|
if (type === "fact") {
|
package/dist/esm/internals.mjs
CHANGED
|
@@ -31447,7 +31447,7 @@ var calculateJumpMarks = (samplePositionTracks, endOfMdat) => {
|
|
|
31447
31447
|
progresses[track[0].track.trackId] = 0;
|
|
31448
31448
|
}
|
|
31449
31449
|
const jumpMarks = [];
|
|
31450
|
-
const allSamplesSortedByOffset = samplePositionTracks.flat(1).sort((a, b) => a.samplePosition.offset - b.samplePosition.offset);
|
|
31450
|
+
const allSamplesSortedByOffset = samplePositionTracks.flat(1).filter((s) => s.track.type === "audio" || s.track.type === "video").sort((a, b) => a.samplePosition.offset - b.samplePosition.offset);
|
|
31451
31451
|
let indexToVisit = 0;
|
|
31452
31452
|
const visited = new Set;
|
|
31453
31453
|
let rollOverToProcess = false;
|
|
@@ -35095,9 +35095,9 @@ var parseWav = (state) => {
|
|
|
35095
35095
|
if (insideMediaSection === "in-section") {
|
|
35096
35096
|
return parseMediaSection2({ state });
|
|
35097
35097
|
}
|
|
35098
|
-
const type = iterator.getByteString(4, false);
|
|
35098
|
+
const type = iterator.getByteString(4, false).toLowerCase();
|
|
35099
35099
|
Log.trace(state.logLevel, `Processing box type ${type}`);
|
|
35100
|
-
if (type === "
|
|
35100
|
+
if (type === "riff") {
|
|
35101
35101
|
return parseHeader({ state });
|
|
35102
35102
|
}
|
|
35103
35103
|
if (type === "fmt") {
|
|
@@ -35106,13 +35106,13 @@ var parseWav = (state) => {
|
|
|
35106
35106
|
if (type === "data") {
|
|
35107
35107
|
return parseData({ state });
|
|
35108
35108
|
}
|
|
35109
|
-
if (type === "
|
|
35109
|
+
if (type === "list") {
|
|
35110
35110
|
return parseList({ state });
|
|
35111
35111
|
}
|
|
35112
|
-
if (type === "id3"
|
|
35112
|
+
if (type === "id3") {
|
|
35113
35113
|
return parseId32({ state });
|
|
35114
35114
|
}
|
|
35115
|
-
if (type === "
|
|
35115
|
+
if (type === "junk" || type === "fllr") {
|
|
35116
35116
|
return parseJunk({ state });
|
|
35117
35117
|
}
|
|
35118
35118
|
if (type === "fact") {
|
|
@@ -31727,7 +31727,7 @@ var calculateJumpMarks = (samplePositionTracks, endOfMdat) => {
|
|
|
31727
31727
|
progresses[track[0].track.trackId] = 0;
|
|
31728
31728
|
}
|
|
31729
31729
|
const jumpMarks = [];
|
|
31730
|
-
const allSamplesSortedByOffset = samplePositionTracks.flat(1).sort((a, b) => a.samplePosition.offset - b.samplePosition.offset);
|
|
31730
|
+
const allSamplesSortedByOffset = samplePositionTracks.flat(1).filter((s) => s.track.type === "audio" || s.track.type === "video").sort((a, b) => a.samplePosition.offset - b.samplePosition.offset);
|
|
31731
31731
|
let indexToVisit = 0;
|
|
31732
31732
|
const visited = new Set;
|
|
31733
31733
|
let rollOverToProcess = false;
|
|
@@ -35375,9 +35375,9 @@ var parseWav = (state) => {
|
|
|
35375
35375
|
if (insideMediaSection === "in-section") {
|
|
35376
35376
|
return parseMediaSection2({ state });
|
|
35377
35377
|
}
|
|
35378
|
-
const type = iterator.getByteString(4, false);
|
|
35378
|
+
const type = iterator.getByteString(4, false).toLowerCase();
|
|
35379
35379
|
Log.trace(state.logLevel, `Processing box type ${type}`);
|
|
35380
|
-
if (type === "
|
|
35380
|
+
if (type === "riff") {
|
|
35381
35381
|
return parseHeader({ state });
|
|
35382
35382
|
}
|
|
35383
35383
|
if (type === "fmt") {
|
|
@@ -35386,13 +35386,13 @@ var parseWav = (state) => {
|
|
|
35386
35386
|
if (type === "data") {
|
|
35387
35387
|
return parseData({ state });
|
|
35388
35388
|
}
|
|
35389
|
-
if (type === "
|
|
35389
|
+
if (type === "list") {
|
|
35390
35390
|
return parseList({ state });
|
|
35391
35391
|
}
|
|
35392
|
-
if (type === "id3"
|
|
35392
|
+
if (type === "id3") {
|
|
35393
35393
|
return parseId32({ state });
|
|
35394
35394
|
}
|
|
35395
|
-
if (type === "
|
|
35395
|
+
if (type === "junk" || type === "fllr") {
|
|
35396
35396
|
return parseJunk({ state });
|
|
35397
35397
|
}
|
|
35398
35398
|
if (type === "fact") {
|
package/dist/esm/renderEntry.mjs
CHANGED
|
@@ -183,7 +183,7 @@ var renderContent = (Root) => {
|
|
|
183
183
|
renderToDOM(/* @__PURE__ */ jsx("div", {
|
|
184
184
|
children: /* @__PURE__ */ jsx(DelayedSpinner, {})
|
|
185
185
|
}));
|
|
186
|
-
import("./chunk-
|
|
186
|
+
import("./chunk-n77gaszd.js").then(({ StudioInternals }) => {
|
|
187
187
|
renderToDOM(/* @__PURE__ */ jsx(StudioInternals.Studio, {
|
|
188
188
|
readOnly: true,
|
|
189
189
|
rootComponent: Root
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.322",
|
|
7
7
|
"description": "APIs for interacting with the Remotion Studio",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
"source-map": "0.7.3",
|
|
24
24
|
"open": "^8.4.2",
|
|
25
25
|
"zod": "3.22.3",
|
|
26
|
-
"
|
|
27
|
-
"@remotion/media-utils": "4.0.
|
|
28
|
-
"@remotion/
|
|
29
|
-
"remotion": "4.0.
|
|
30
|
-
"@remotion/
|
|
31
|
-
"@remotion/webcodecs": "4.0.
|
|
32
|
-
"@remotion/
|
|
33
|
-
"@remotion/
|
|
26
|
+
"remotion": "4.0.322",
|
|
27
|
+
"@remotion/media-utils": "4.0.322",
|
|
28
|
+
"@remotion/player": "4.0.322",
|
|
29
|
+
"@remotion/renderer": "4.0.322",
|
|
30
|
+
"@remotion/zod-types": "4.0.322",
|
|
31
|
+
"@remotion/webcodecs": "4.0.322",
|
|
32
|
+
"@remotion/media-parser": "4.0.322",
|
|
33
|
+
"@remotion/studio-shared": "4.0.322"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"react": "19.0.0",
|
|
37
37
|
"react-dom": "19.0.0",
|
|
38
38
|
"@types/semver": "^7.3.4",
|
|
39
39
|
"eslint": "9.19.0",
|
|
40
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
40
|
+
"@remotion/eslint-config-internal": "4.0.322"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
> @remotion/studio@4.0.318 formatting /Users/jonathanburger/remotion/packages/studio
|
|
4
|
-
> prettier --experimental-cli src --check
|
|
5
|
-
|
|
6
|
-
[?25l[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m Checking formatting...[0K[1G[36m|[39m Checking formatting...[0K[1G[36m/[39m Checking formatting...[0K[1G[36m-[39m Checking formatting...[0K[1G[36m\[39m src/index.ts[0K[1G[36m|[39m src/api/delete-static-file.ts[0K[1G[36m/[39m src/previewEntry.tsx[0K[1G[36m-[39m src/previewEntry.tsx[0K[1G[36m\[39m src/api/get-static-files.ts[0K[1G[36m|[39m src/api/focus-default-props-path.ts[0K[1G[36m/[39m src/api/focus-default-props-path.ts[0K[1G[36m-[39m src/api/focus-default-props-path.ts[0K[1G[36m\[39m src/api/focus-default-props-path.ts[0K[1G[36m|[39m src/api/get-zod-schema-from-primitive.ts[0K[1G[36m/[39m src/api/get-zod-schema-from-primitive.ts[0K[1G[36m-[39m src/api/get-zod-schema-from-primitive.ts[0K[1G[36m\[39m src/api/pause.ts[0K[1G[36m|[39m src/api/pause.ts[0K[1G[36m/[39m src/api/pause.ts[0K[1G[36m-[39m src/api/pause.ts[0K[1G[36m\[39m src/api/go-to-composition.ts[0K[1G[36m|[39m src/api/go-to-composition.ts[0K[1G[36m/[39m src/api/go-to-composition.ts[0K[1G[36m-[39m src/Studio.tsx[0K[1G[36m\[39m src/Studio.tsx[0K[1G[36m|[39m src/api/install-package.ts[0K[1G[36m/[39m src/api/install-package.ts[0K[1G[36m-[39m src/api/play.ts[0K[1G[36m\[39m src/api/play.ts[0K[1G[36m|[39m src/api/play.ts[0K[1G[36m/[39m src/api/restart-studio.ts[0K[1G[36m-[39m src/api/restart-studio.ts[0K[1G[36m\[39m src/api/restart-studio.ts[0K[1G[36m|[39m src/api/restart-studio.ts[0K[1G[36m/[39m src/api/seek.ts[0K[1G[36m-[39m src/api/seek.ts[0K[1G[36m\[39m src/api/seek.ts[0K[1G[36m|[39m src/api/seek.ts[0K[1G[36m/[39m src/api/seek.ts[0K[1G[36m-[39m src/api/seek.ts[0K[1G[36m\[39m src/api/seek.ts[0K[1G[36m|[39m src/api/toggle.ts[0K[1G[36m/[39m src/api/toggle.ts[0K[1G[36m-[39m src/api/watch-public-folder.ts[0K[1G[36m\[39m src/api/watch-public-folder.ts[0K[1G[36m|[39m src/api/write-static-file.ts[0K[1G[36m/[39m src/api/write-static-file.ts[0K[1G[36m-[39m src/api/write-static-file.ts[0K[1G[36m\[39m src/api/watch-static-file.ts[0K[1G[36m|[39m src/api/watch-static-file.ts[0K[1G[36m/[39m src/components/AudioWaveformBar.tsx[0K[1G[36m-[39m src/api/update-default-props.ts[0K[1G[36m\[39m src/api/update-default-props.ts[0K[1G[36m|[39m src/api/update-default-props.ts[0K[1G[36m/[39m src/api/save-default-props.ts[0K[1G[36m-[39m src/api/save-default-props.ts[0K[1G[36m\[39m src/api/save-default-props.ts[0K[1G[36m|[39m src/api/save-default-props.ts[0K[1G[36m/[39m src/components/Button.tsx[0K[1G[36m-[39m src/components/Button.tsx[0K[1G[36m\[39m src/components/Button.tsx[0K[1G[36m|[39m src/components/Button.tsx[0K[1G[36m/[39m src/components/Button.tsx[0K[1G[36m-[39m src/components/AskAiModal.tsx[0K[1G[36m\[39m src/components/AskAiModal.tsx[0K[1G[36m|[39m src/components/AskAiModal.tsx[0K[1G[36m/[39m src/components/AskAiModal.tsx[0K[1G[36m-[39m src/components/AskAiModal.tsx[0K[1G[36m\[39m src/components/CheckboardToggle.tsx[0K[1G[36m|[39m src/components/CheckboardToggle.tsx[0K[1G[36m/[39m src/components/CheckboardToggle.tsx[0K[1G[36m-[39m src/components/CheckboardToggle.tsx[0K[1G[36m\[39m src/components/Checkbox.tsx[0K[1G[36m|[39m src/components/CheckerboardProvider.tsx[0K[1G[36m/[39m src/components/CheckerboardProvider.tsx[0K[1G[36m-[39m src/components/CheckerboardProvider.tsx[0K[1G[36m\[39m src/components/AssetSelector.tsx[0K[1G[36m|[39m src/components/AudioWaveform.tsx[0K[1G[36m/[39m src/components/AudioWaveform.tsx[0K[1G[36m-[39m src/components/AudioWaveform.tsx[0K[1G[36m\[39m src/components/CompositionContextButton.tsx[0K[1G[36m|[39m src/components/CompositionContextButton.tsx[0K[1G[36m/[39m src/components/AssetSelectorItem.tsx[0K[1G[36m-[39m src/components/AssetSelectorItem.tsx[0K[1G[36m\[39m src/components/AssetSelectorItem.tsx[0K[1G[36m|[39m src/components/AssetSelectorItem.tsx[0K[1G[36m/[39m src/components/ControlButton.tsx[0K[1G[36m-[39m src/components/ControlButton.tsx[0K[1G[36m\[39m src/components/Editor.tsx[0K[1G[36m|[39m src/components/CopyButton.tsx[0K[1G[36m/[39m src/components/CopyButton.tsx[0K[1G[36m-[39m src/components/CopyButton.tsx[0K[1G[36m\[39m src/components/CurrentComposition.tsx[0K[1G[36m|[39m src/components/CompSelectorRef.tsx[0K[1G[36m/[39m src/components/CompSelectorRef.tsx[0K[1G[36m-[39m src/components/CompSelectorRef.tsx[0K[1G[36m\[39m src/components/Canvas.tsx[0K[1G[36m|[39m src/components/Canvas.tsx[0K[1G[36m/[39m src/components/Canvas.tsx[0K[1G[36m-[39m src/components/EditorContent.tsx[0K[1G[36m\[39m src/components/EditorContent.tsx[0K[1G[36m|[39m src/components/EditorContent.tsx[0K[1G[36m/[39m src/components/ExplorerPanel.tsx[0K[1G[36m-[39m src/components/EditorContexts.tsx[0K[1G[36m\[39m src/components/EditorContexts.tsx[0K[1G[36m|[39m src/api/create-composition.tsx[0K[1G[36m/[39m src/components/FilePreview.tsx[0K[1G[36m-[39m src/components/FilePreview.tsx[0K[1G[36m\[39m src/components/FullscreenToggle.tsx[0K[1G[36m|[39m src/components/FullscreenToggle.tsx[0K[1G[36m/[39m src/components/FullscreenToggle.tsx[0K[1G[36m-[39m src/components/FullscreenToggle.tsx[0K[1G[36m\[39m src/components/FullscreenToggle.tsx[0K[1G[36m|[39m src/components/GlobalPropsEditorUpdateButton.tsx[0K[1G[36m/[39m src/components/CompositionSelector.tsx[0K[1G[36m-[39m src/components/InlineAction.tsx[0K[1G[36m\[39m src/components/InlineAction.tsx[0K[1G[36m|[39m src/components/GlobalKeybindings.tsx[0K[1G[36m/[39m src/components/GlobalKeybindings.tsx[0K[1G[36m-[39m src/components/LoopToggle.tsx[0K[1G[36m\[39m src/components/InstallablePackage.tsx[0K[1G[36m|[39m src/components/JSONViewer.tsx[0K[1G[36m/[39m src/components/InlineDropdown.tsx[0K[1G[36m-[39m src/components/InlineDropdown.tsx[0K[1G[36m\[39m src/components/KnownBugs.tsx[0K[1G[36m|[39m src/components/KnownBugs.tsx[0K[1G[36m/[39m src/components/KnownBugs.tsx[0K[1G[36m-[39m src/components/ModalsProvider.tsx[0K[1G[36m\[39m src/components/ModalsProvider.tsx[0K[1G[36m|[39m src/components/InstallPackage.tsx[0K[1G[36m/[39m src/components/ModalFooter.tsx[0K[1G[36m-[39m src/components/ModalFooter.tsx[0K[1G[36m\[39m src/components/MenuToolbar.tsx[0K[1G[36m|[39m src/components/MenuBuildIndicator.tsx[0K[1G[36m/[39m src/components/MenuBuildIndicator.tsx[0K[1G[36m-[39m src/components/MobilePanel.tsx[0K[1G[36m\[39m src/components/MobilePanel.tsx[0K[1G[36m|[39m src/components/PlayBeepSound.tsx[0K[1G[36m/[39m src/components/PlayBeepSound.tsx[0K[1G[36m-[39m src/components/NoRegisterRoot.tsx[0K[1G[36m\[39m src/components/OpenEditorButton.tsx[0K[1G[36m|[39m src/components/ModalHeader.tsx[0K[1G[36m/[39m src/components/ModalHeader.tsx[0K[1G[36m-[39m src/components/ModalHeader.tsx[0K[1G[36m\[39m src/components/PlaybackKeyboardShortcutsManager.tsx[0K[1G[36m|[39m src/components/PlaybackKeyboardShortcutsManager.tsx[0K[1G[36m/[39m src/components/PlaybackRatePersistor.tsx[0K[1G[36m-[39m src/components/PlaybackRatePersistor.tsx[0K[1G[36m\[39m src/components/FpsCounter.tsx[0K[1G[36m|[39m src/components/FpsCounter.tsx[0K[1G[36m/[39m src/components/Modals.tsx[0K[1G[36m-[39m src/components/Modals.tsx[0K[1G[36m\[39m src/components/Modals.tsx[0K[1G[36m|[39m src/components/RefreshCompositionOverlay.tsx[0K[1G[36m/[39m src/components/RefreshCompositionOverlay.tsx[0K[1G[36m-[39m src/components/PlaybackRateSelector.tsx[0K[1G[36m\[39m src/components/PlaybackRateSelector.tsx[0K[1G[36m|[39m src/components/PlayPause.tsx[0K[1G[36m/[39m src/components/OptionsPanel.tsx[0K[1G[36m-[39m src/components/RenderPreview.tsx[0K[1G[36m\[39m src/components/RenderPreview.tsx[0K[1G[36m|[39m src/components/RenderButton.tsx[0K[1G[36m/[39m src/components/RenderButton.tsx[0K[1G[36m-[39m src/components/RenderButton.tsx[0K[1G[36m\[39m src/components/SetTimelineInOutProvider.tsx[0K[1G[36m|[39m src/components/SetTimelineInOutProvider.tsx[0K[1G[36m/[39m src/components/SetTimelineInOutProvider.tsx[0K[1G[36m-[39m src/components/ShowRulersProvider.tsx[0K[1G[36m\[39m src/components/ShowRulersProvider.tsx[0K[1G[36m|[39m src/components/ShowRulersProvider.tsx[0K[1G[36m/[39m src/components/PreviewToolbar.tsx[0K[1G[36m-[39m src/components/ResetZoomButton.tsx[0K[1G[36m\[39m src/components/ResetZoomButton.tsx[0K[1G[36m|[39m src/components/Preview.tsx[0K[1G[36m/[39m src/components/Preview.tsx[0K[1G[36m-[39m src/components/Spinner.tsx[0K[1G[36m\[39m src/components/StaticFilePreview.tsx[0K[1G[36m|[39m src/components/SizeSelector.tsx[0K[1G[36m/[39m src/components/SidebarRenderButton.tsx[0K[1G[36m-[39m src/components/SidebarRenderButton.tsx[0K[1G[36m\[39m src/components/TextViewer.tsx[0K[1G[36m|[39m src/components/SidebarCollapserControls.tsx[0K[1G[36m/[39m src/components/call-api.ts[0K[1G[36m-[39m src/components/call-api.ts[0K[1G[36m\[39m src/components/UpdateCheck.tsx[0K[1G[36m|[39m src/components/UpdateCheck.tsx[0K[1G[36m/[39m src/components/load-canvas-content-from-url.ts[0K[1G[36m-[39m src/components/load-canvas-content-from-url.ts[0K[1G[36m\[39m src/components/load-canvas-content-from-url.ts[0K[1G[36m|[39m src/components/layout.tsx[0K[1G[36m/[39m src/helpers/checkerboard-background.ts[0K[1G[36m-[39m src/error-overlay/entry-basic.ts[0K[1G[36m\[39m src/helpers/calculate-timeline.ts[0K[1G[36m|[39m src/helpers/calculate-timeline.ts[0K[1G[36m/[39m src/helpers/check-fullscreen-support.ts[0K[1G[36m-[39m src/helpers/colors.ts[0K[1G[36m\[39m src/helpers/colors.ts[0K[1G[36m|[39m src/components/TopPanel.tsx[0K[1G[36m/[39m src/components/TopPanel.tsx[0K[1G[36m-[39m src/helpers/client-id.tsx[0K[1G[36m\[39m src/helpers/client-id.tsx[0K[1G[36m|[39m src/helpers/copy-text.ts[0K[1G[36m/[39m src/helpers/copy-text.ts[0K[1G[36m-[39m src/helpers/document-title.ts[0K[1G[36m\[39m src/helpers/get-git-menu-item.ts[0K[1G[36m|[39m src/helpers/get-git-menu-item.ts[0K[1G[36m/[39m src/helpers/get-left-of-timeline-slider.ts[0K[1G[36m-[39m src/helpers/create-folder-tree.ts[0K[1G[36m\[39m src/helpers/create-folder-tree.ts[0K[1G[36m|[39m src/helpers/create-folder-tree.ts[0K[1G[36m/[39m src/helpers/create-folder-tree.ts[0K[1G[36m-[39m src/helpers/get-asset-metadata.ts[0K[1G[36m\[39m src/helpers/get-asset-metadata.ts[0K[1G[36m|[39m src/helpers/get-timeline-nestedness.ts[0K[1G[36m/[39m src/helpers/get-location-of-sequence.ts[0K[1G[36m-[39m src/helpers/get-location-of-sequence.ts[0K[1G[36m\[39m src/helpers/frame-database.ts[0K[1G[36m|[39m src/helpers/frame-database.ts[0K[1G[36m/[39m src/helpers/get-timeline-sequence-sort-key.ts[0K[1G[36m-[39m src/helpers/get-timeline-sequence-sort-key.ts[0K[1G[36m\[39m src/helpers/is-current-selected-still.ts[0K[1G[36m|[39m src/helpers/get-timeline-sequence-hash.ts[0K[1G[36m/[39m src/helpers/presets-labels.ts[0K[1G[36m-[39m src/helpers/pick-color.tsx[0K[1G[36m\[39m src/helpers/timeline-layout.ts[0K[1G[36m|[39m src/helpers/smooth-zoom.ts[0K[1G[36m/[39m src/helpers/persist-open-folders.tsx[0K[1G[36m-[39m src/helpers/open-in-editor.ts[0K[1G[36m\[39m src/helpers/render-modal-sections.ts[0K[1G[36m|[39m src/helpers/render-modal-sections.ts[0K[1G[36m/[39m src/helpers/inject-css.ts[0K[1G[36m-[39m src/helpers/inject-css.ts[0K[1G[36m\[39m src/helpers/inject-css.ts[0K[1G[36m|[39m src/helpers/inject-css.ts[0K[1G[36m/[39m src/helpers/inject-css.ts[0K[1G[36m-[39m src/helpers/inject-css.ts[0K[1G[36m\[39m src/helpers/use-asset-drag-events.ts[0K[1G[36m|[39m src/helpers/use-file-existence.ts[0K[1G[36m/[39m src/helpers/use-file-existence.ts[0K[1G[36m-[39m src/helpers/use-studio-canvas-dimensions.ts[0K[1G[36m\[39m src/helpers/use-studio-canvas-dimensions.ts[0K[1G[36m|[39m src/components/TimeValue.tsx[0K[1G[36m/[39m src/helpers/use-breakpoint.ts[0K[1G[36m-[39m src/helpers/retry-payload.ts[0K[1G[36m\[39m src/helpers/retry-payload.ts[0K[1G[36m|[39m src/helpers/retry-payload.ts[0K[1G[36m/[39m src/icons/data.tsx[0K[1G[36m-[39m src/icons/Checkmark.tsx[0K[1G[36m\[39m src/icons/Checkmark.tsx[0K[1G[36m|[39m src/icons/file.tsx[0K[1G[36m/[39m src/icons/file.tsx[0K[1G[36m-[39m src/icons/audio.tsx[0K[1G[36m\[39m src/icons/clipboard.tsx[0K[1G[36m|[39m src/icons/minus.tsx[0K[1G[36m/[39m src/icons/folder.tsx[0K[1G[36m-[39m src/icons/folder.tsx[0K[1G[36m\[39m src/icons/gif.tsx[0K[1G[36m|[39m src/icons/render.tsx[0K[1G[36m/[39m src/icons/jump-to-start.tsx[0K[1G[36m-[39m src/icons/media-volume.tsx[0K[1G[36m\[39m src/state/canvas-ref.ts[0K[1G[36m|[39m src/icons/plus.tsx[0K[1G[36m/[39m src/icons/still.tsx[0K[1G[36m-[39m src/icons/step-forward.tsx[0K[1G[36m\[39m src/icons/step-forward.tsx[0K[1G[36m|[39m src/icons/timelineInOutPointer.tsx[0K[1G[36m/[39m src/icons/timelineInOutPointer.tsx[0K[1G[36m-[39m src/icons/timelineInOutPointer.tsx[0K[1G[36m\[39m src/state/checkerboard.ts[0K[1G[36m|[39m src/state/editor-rulers.ts[0K[1G[36m/[39m src/state/editor-rulers.ts[0K[1G[36m-[39m src/state/keybindings.tsx[0K[1G[36m\[39m src/state/in-out.ts[0K[1G[36m|[39m src/state/in-out.ts[0K[1G[36m/[39m src/state/modals.ts[0K[1G[36m-[39m src/state/modals.ts[0K[1G[36m\[39m src/state/modals.ts[0K[1G[36m|[39m src/state/modals.ts[0K[1G[36m/[39m src/state/timeline.ts[0K[1G[36m-[39m src/state/timeline.ts[0K[1G[36m\[39m src/state/render-frame.ts[0K[1G[36m|[39m src/state/playbackrate.ts[0K[1G[36m/[39m src/test/color-math.test.ts[0K[1G[36m-[39m src/test/color-math.test.ts[0K[1G[36m\[39m src/test/format-time.test.ts[0K[1G[36m|[39m src/test/extract-zod-enums.test.ts[0K[1G[36m/[39m src/test/extract-zod-enums.test.ts[0K[1G[36m-[39m src/test/timeline-sequence-layout.test.ts[0K[1G[36m\[39m src/test/timeline.test.ts[0K[1G[36m|[39m src/test/validate-gui-output-filename.test.ts[0K[1G[36m/[39m src/test/stringify-default-props.test.ts[0K[1G[36m-[39m src/test/stringify-default-props.test.ts[0K[1G[36m\[39m src/api/helpers/calc-new-props.ts[0K[1G[36m|[39m src/visual-controls/get-current-edited-value.ts[0K[1G[36m/[39m src/visual-controls/get-current-edited-value.ts[0K[1G[36m-[39m src/visual-controls/VisualControls.tsx[0K[1G[36m\[39m src/components/EditorGuides/Guide.tsx[0K[1G[36m|[39m src/components/EditorRuler/Ruler.tsx[0K[1G[36m/[39m src/components/EditorRuler/Ruler.tsx[0K[1G[36m-[39m src/components/EditorRuler/index.tsx[0K[1G[36m\[39m src/components/Menu/MenuDivider.tsx[0K[1G[36m|[39m src/components/Menu/is-menu-item.tsx[0K[1G[36m/[39m src/components/Menu/SubMenu.tsx[0K[1G[36m-[39m src/components/Menu/SubMenu.tsx[0K[1G[36m\[39m src/components/NewComposition/CancelButton.tsx[0K[1G[36m|[39m src/components/NewComposition/DeleteComposition.tsx[0K[1G[36m/[39m src/components/Menu/styles.ts[0K[1G[36m-[39m src/components/Menu/styles.ts[0K[1G[36m\[39m src/components/Menu/styles.ts[0K[1G[36m|[39m src/components/Menu/styles.ts[0K[1G[36m/[39m src/components/NewComposition/DismissableModal.tsx[0K[1G[36m-[39m src/components/NewComposition/DiffPreview.tsx[0K[1G[36m\[39m src/components/NewComposition/NewCompDuration.tsx[0K[1G[36m|[39m src/components/NewComposition/NewCompDuration.tsx[0K[1G[36m/[39m src/components/NewComposition/NewCompDuration.tsx[0K[1G[36m-[39m src/components/NewComposition/NewCompDuration.tsx[0K[1G[36m\[39m src/test/big-timeline.test.ts[0K[1G[36m|[39m src/components/NewComposition/ValidationMessage.tsx[0K[1G[36m/[39m src/components/NewComposition/RemInputTypeColor.tsx[0K[1G[36m-[39m src/components/NewComposition/RemInputTypeColor.tsx[0K[1G[36m\[39m src/components/NewComposition/RemInputTypeColor.tsx[0K[1G[36m|[39m src/components/NewComposition/MenuContent.tsx[0K[1G[36m/[39m src/components/QuickSwitcher/NoResults.tsx[0K[1G[36m-[39m src/components/QuickSwitcher/NoResults.tsx[0K[1G[36m\[39m src/components/Notifications/NotificationCenter.tsx[0K[1G[36m|[39m src/components/NewComposition/DuplicateComposition.tsx[0K[1G[36m/[39m src/components/NewComposition/DuplicateComposition.tsx[0K[1G[36m-[39m src/components/NewComposition/DuplicateComposition.tsx[0K[1G[36m\[39m src/components/QuickSwitcher/fuzzy-search.ts[0K[1G[36m|[39m src/components/QuickSwitcher/AlgoliaCredit.tsx[0K[1G[36m/[39m src/components/RenderModal/InlineEyeIcon.tsx[0K[1G[36m-[39m src/components/RenderModal/CliCopyButton.tsx[0K[1G[36m\[39m src/components/RenderModal/MultiRangeSlider.tsx[0K[1G[36m|[39m src/components/RenderModal/JpegQualitySetting.tsx[0K[1G[36m/[39m src/components/RenderModal/InlineRemoveButton.tsx[0K[1G[36m-[39m src/components/RenderModal/OptionExplainer.tsx[0K[1G[36m\[39m src/components/RenderModal/DataEditor.tsx[0K[1G[36m|[39m src/components/RenderModal/InfoBubble.tsx[0K[1G[36m/[39m src/components/RenderModal/InfoBubble.tsx[0K[1G[36m-[39m src/components/RenderModal/RenderModalAudio.tsx[0K[1G[36m\[39m src/components/RenderModal/RenderModalHr.tsx[0K[1G[36m|[39m src/components/RenderModal/RenderModalGif.tsx[0K[1G[36m/[39m src/components/RenderModal/RenderModalGif.tsx[0K[1G[36m-[39m src/components/RenderModal/RenderModalEnvironmentVariables.tsx[0K[1G[36m\[39m src/components/RenderModal/RenderModalJSONPropsEditor.tsx[0K[1G[36m|[39m src/components/RenderModal/RenderModalJSONPropsEditor.tsx[0K[1G[36m/[39m src/components/RenderModal/RenderModalJSONPropsEditor.tsx[0K[1G[36m-[39m src/components/RenderModal/ResolveCompositionBeforeModal.tsx[0K[1G[36m\[39m src/components/RenderModal/RenderModalPicture.tsx[0K[1G[36m|[39m src/components/RenderModal/RenderStatusModal.tsx[0K[1G[36m/[39m src/components/RenderModal/get-render-modal-warnings.ts[0K[1G[36m-[39m src/components/RenderModal/get-string-before-suffix.ts[0K[1G[36m\[39m src/components/RenderModal/layout.ts[0K[1G[36m|[39m src/components/RenderQueue/RenderQueueCopyToClipboard.tsx[0K[1G[36m/[39m src/components/RenderQueue/RenderQueueError.tsx[0K[1G[36m-[39m src/components/RenderQueue/RenderQueueOutputName.tsx[0K[1G[36m\[39m src/components/RenderQueue/RenderQueueProgressMessage.tsx[0K[1G[36m|[39m src/components/RenderQueue/RenderQueueRemoveItem.tsx[0K[1G[36m/[39m src/components/RenderQueue/item-style.ts[0K[1G[36m-[39m src/components/RenderQueue/RenderQueueOpenInFolder.tsx[0K[1G[36m\[39m src/components/RenderModal/RenderModal.tsx[0K[1G[36m|[39m src/components/Splitter/SplitterContext.tsx[0K[1G[36m/[39m src/components/RenderQueue/actions.ts[0K[1G[36m-[39m src/components/Timeline/LoopedTimelineIndicators.tsx[0K[1G[36m\[39m src/components/Splitter/SplitterElement.tsx[0K[1G[36m|[39m src/components/Tabs/vertical.tsx[0K[1G[36m/[39m src/components/Tabs/vertical.tsx[0K[1G[36m-[39m src/components/Timeline/TimelineInOutPointer.tsx[0K[1G[36m\[39m src/components/Timeline/TimelineInOutPointerHandle.tsx[0K[1G[36m|[39m src/components/Splitter/SplitterHandle.tsx[0K[1G[36m/[39m src/components/Timeline/TimelinePlayCursorSyncer.tsx[0K[1G[36m-[39m src/components/Timeline/TimelineScrollable.tsx[0K[1G[36m\[39m src/components/Timeline/TimelineScrollable.tsx[0K[1G[36m|[39m src/components/Timeline/TimelineSequenceFrame.tsx[0K[1G[36m/[39m src/components/Timeline/TimelineSlider.tsx[0K[1G[36m-[39m src/components/Timeline/TimelineSlider.tsx[0K[1G[36m\[39m src/components/Timeline/TimelineZoomControls.tsx[0K[1G[36m|[39m src/components/Timeline/TimelineListItem.tsx[0K[1G[36m/[39m src/components/Timeline/TimelineListItem.tsx[0K[1G[36m-[39m src/components/UpdateModal/OpenIssueButton.tsx[0K[1G[36m\[39m src/components/Timeline/is-collapsed.ts[0K[1G[36m|[39m src/components/Timeline/TimelineDragHandler.tsx[0K[1G[36m/[39m src/components/VisualControls/ClickableFileName.tsx[0K[1G[36m-[39m src/components/VisualControls/VisualControlsContent.tsx[0K[1G[36m\[39m src/components/VisualControls/get-original-stack-trace.ts[0K[1G[36m|[39m src/error-overlay/remotion-overlay/AskOnDiscord.tsx[0K[1G[36m/[39m src/components/UpdateModal/UpdateModal.tsx[0K[1G[36m-[39m src/components/Timeline/timeline-scroll-logic.ts[0K[1G[36m\[39m src/components/Menu/portals.ts[0K[1G[36m|[39m src/error-overlay/remotion-overlay/ErrorTitle.tsx[0K[1G[36m/[39m src/error-overlay/remotion-overlay/CalculateMetadataErrorExplainer.tsx[0K[1G[36m-[39m src/error-overlay/react-overlay/listen-to-runtime-errors.ts[0K[1G[36m\[39m src/error-overlay/remotion-overlay/ErrorLoader.tsx[0K[1G[36m|[39m src/error-overlay/remotion-overlay/ErrorDisplay.tsx[0K[1G[36m/[39m src/error-overlay/remotion-overlay/Overlay.tsx[0K[1G[36m-[39m src/error-overlay/remotion-overlay/SearchGitHubIssues.tsx[0K[1G[36m\[39m src/error-overlay/remotion-overlay/OpenInEditor.tsx[0K[1G[36m|[39m src/error-overlay/remotion-overlay/Symbolicating.tsx[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/SchemaEditor.tsx[0K[1G[36m-[39m src/error-overlay/remotion-overlay/format-location.ts[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/SchemaResetButton.tsx[0K[1G[36m|[39m src/components/RenderModal/SchemaEditor/SchemaResetButton.tsx[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/SchemaErrorMessages.tsx[0K[1G[36m-[39m src/error-overlay/remotion-overlay/carets.tsx[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/ZodArrayEditor.tsx[0K[1G[36m|[39m src/components/RenderModal/SchemaEditor/SchemaSeparationLine.tsx[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/ZodArrayItemEditor.tsx[0K[1G[36m-[39m src/components/RenderModal/SchemaEditor/ZodEffectEditor.tsx[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/ZodDiscriminatedUnionEditor.tsx[0K[1G[36m|[39m src/components/RenderModal/SchemaEditor/ZodDateEditor.tsx[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/ZodEnumEditor.tsx[0K[1G[36m-[39m src/components/RenderModal/SchemaEditor/ZodNumberEditor.tsx[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/ZodTextareaEditor.tsx[0K[1G[36m|[39m src/components/RenderModal/SchemaEditor/ZodMatrixEditor.tsx[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/ZodFieldValidation.tsx[0K[1G[36m-[39m src/components/RenderModal/SchemaEditor/ZodErrorMessages.tsx[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/ZodNullableEditor.tsx[0K[1G[36m|[39m src/components/RenderModal/SchemaEditor/ZodNullableEditor.tsx[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/get-schema-label.ts[0K[1G[36m-[39m src/components/RenderModal/SchemaEditor/zod-types.ts[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/local-state.tsx[0K[1G[36m|[39m src/components/RenderModal/SchemaEditor/create-zod-values.ts[0K[1G[36m/[39m src/components/RenderModal/SchemaEditor/create-zod-values.ts[0K[1G[36m-[39m src/components/RenderModal/SchemaEditor/extract-enum-json-paths.ts[0K[1G[36m\[39m src/components/RenderModal/SchemaEditor/extract-enum-json-paths.ts[0K[1G[36m|[39m src/error-overlay/react-overlay/effects/stack-trace-limit.ts[0K[1G[36m/[39m src/error-overlay/react-overlay/effects/resolve-file-source.ts[0K[1G[36m-[39m src/error-overlay/react-overlay/utils/make-stack-frame.ts[0K[1G[36m\[39m src/error-overlay/react-overlay/utils/make-stack-frame.ts[0K[1G[36m|[39m src/error-overlay/react-overlay/utils/make-stack-frame.ts[0K[1G[36m/[39m src/error-overlay/react-overlay/utils/get-source-map.ts[0K[1G[36m-[39m src/components/MediaVolumeProvider.tsx[0K[1G[36m\[39m src/error-overlay/react-overlay/utils/get-stack-frames.ts[0K[?25h[1GChecking formatting...[0K
|
|
7
|
-
[?25hAll matched files use Prettier code style!
|
package/.turbo/turbo-lint.log
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
> @remotion/studio@4.0.318 lint /Users/jonathanburger/remotion/packages/studio
|
|
4
|
-
> eslint src
|
|
5
|
-
|
|
6
|
-
=============
|
|
7
|
-
|
|
8
|
-
WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.
|
|
9
|
-
|
|
10
|
-
You may find that it works just fine, or you may not.
|
|
11
|
-
|
|
12
|
-
SUPPORTED TYPESCRIPT VERSIONS: >=4.7.4 <5.7.0
|
|
13
|
-
|
|
14
|
-
YOUR TYPESCRIPT VERSION: 5.8.2
|
|
15
|
-
|
|
16
|
-
Please only submit bug reports when using the officially supported version.
|
|
17
|
-
|
|
18
|
-
=============
|
|
19
|
-
[0m[0m
|
|
20
|
-
[0m[4m/Users/jonathanburger/remotion/packages/studio/src/components/QuickSwitcher/fuzzy-search.ts[24m[0m
|
|
21
|
-
[0m [2m23:3[22m [33mwarning[39m Unused eslint-disable directive (no problems were reported from 'no-bitwise')[0m
|
|
22
|
-
[0m[0m
|
|
23
|
-
[0m[4m/Users/jonathanburger/remotion/packages/studio/src/error-overlay/react-overlay/utils/get-source-map.ts[24m[0m
|
|
24
|
-
[0m [2m54:1[22m [33mwarning[39m Unexpected 'todo' comment: 'TODO: Can import this from...' [2mno-warning-comments[22m[0m
|
|
25
|
-
[0m[0m
|
|
26
|
-
[0m[4m/Users/jonathanburger/remotion/packages/studio/src/visual-controls/get-current-edited-value.ts[24m[0m
|
|
27
|
-
[0m [2m10:2[22m [33mwarning[39m Unexpected 'todo' comment: 'TODO: What if z.null()' [2mno-warning-comments[22m[0m
|
|
28
|
-
[0m[0m
|
|
29
|
-
[0m[33m[1m✖ 3 problems (0 errors, 3 warnings)[22m[39m[0m
|
|
30
|
-
[0m[33m[1m[22m[39m[33m[1m 0 errors and 1 warning potentially fixable with the `--fix` option.[22m[39m[0m
|
|
31
|
-
[0m[33m[1m[22m[39m[0m
|