Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cursor/rules/general.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ General:
- Avoid blocking the conversation with terminal commands. For example: A) most of my git commands run through pagers, so pipe their output to `cat` to avoid blocking the
terminal. B) You can use `tail` for logs, but be smart and use `-n` instead of `-f`, or the conversation will block
- Use the `gh` tool to interact with GitHub (search/view an Issue, create a PR).
- All new files are to be in TypeScript. Even if someone suggests: make this new foo3 feature, model it after `foo1.js`, create: `foo3.ts`. Chances are, a `foo2.ts` already exist that you can take a look at also for inspiration.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"mp3"
],
"author": "Tim Koschuetzki <tim@transloadit.com>",
"packageManager": "yarn@4.9.1",
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">= 20"
},
Expand All @@ -27,7 +27,7 @@
"p-map": "^7.0.3",
"tus-js-client": "^4.3.1",
"type-fest": "^4.41.0",
"zod": "^3.25.61"
"zod": "3.25.76"
},
"devDependencies": {
"@babel/core": "^7.26.10",
Expand Down Expand Up @@ -56,8 +56,8 @@
"p-retry": "^6.2.1",
"prettier": "^3.5.3",
"temp": "^0.9.4",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"tsx": "4.19.4",
"typescript": "5.8.3",
"vitest": "^3.1.3"
},
"repository": {
Expand All @@ -75,7 +75,7 @@
"lint": "npm-run-all --parallel 'lint:*'",
"fix": "npm-run-all --serial 'fix:*'",
"next:update": "next-update --keep true --tldr",
"prepack": "tsc --build tsconfig.build.json",
"prepack": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo && tsc --build tsconfig.build.json",
"test:unit": "vitest run --coverage ./test/unit",
"test:integration": "vitest run ./test/integration",
"test:all": "vitest run --coverage",
Expand Down
6 changes: 6 additions & 0 deletions src/alphalib/types/robots/_index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,10 @@ import {
interpolatableRobotVideoThumbsInstructionsSchema,
meta as videoThumbsMeta,
} from './video-thumbs.ts'
import {
interpolatableRobotVimeoImportInstructionsSchema,
meta as vimeoImportMeta,
} from './vimeo-import.ts'
import {
interpolatableRobotVimeoStoreInstructionsSchema,
meta as vimeoStoreMeta,
Expand Down Expand Up @@ -457,6 +461,7 @@ const robotStepsInstructionsWithHiddenFields = [
robotVideoOndemandInstructionsWithHiddenFieldsSchema,
interpolatableRobotVideoSubtitleInstructionsSchema,
interpolatableRobotVideoThumbsInstructionsSchema,
interpolatableRobotVimeoImportInstructionsSchema,
interpolatableRobotVimeoStoreInstructionsSchema,
interpolatableRobotWasabiImportInstructionsSchema,
interpolatableRobotWasabiStoreInstructionsSchema,
Expand Down Expand Up @@ -565,6 +570,7 @@ export const robotsMeta = {
videoOndemandMeta,
videoSubtitleMeta,
videoThumbsMeta,
vimeoImportMeta,
vimeoStoreMeta,
wasabiImportMeta,
wasabiStoreMeta,
Expand Down
Loading