Skip to content

Commit 035fea5

Browse files
authored
Sync alphalib 2025 07 14 (#243)
* w * Update package.json
1 parent 50827dc commit 035fea5

File tree

90 files changed

+1473
-711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1473
-711
lines changed

.cursor/rules/general.mdc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ General:
1111
- 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
1212
terminal. B) You can use `tail` for logs, but be smart and use `-n` instead of `-f`, or the conversation will block
1313
- Use the `gh` tool to interact with GitHub (search/view an Issue, create a PR).
14+
- 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.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"mp3"
1313
],
1414
"author": "Tim Koschuetzki <tim@transloadit.com>",
15-
"packageManager": "yarn@4.9.1",
15+
"packageManager": "yarn@4.9.2",
1616
"engines": {
1717
"node": ">= 20"
1818
},
@@ -27,7 +27,7 @@
2727
"p-map": "^7.0.3",
2828
"tus-js-client": "^4.3.1",
2929
"type-fest": "^4.41.0",
30-
"zod": "^3.25.61"
30+
"zod": "3.25.76"
3131
},
3232
"devDependencies": {
3333
"@babel/core": "^7.26.10",
@@ -56,8 +56,8 @@
5656
"p-retry": "^6.2.1",
5757
"prettier": "^3.5.3",
5858
"temp": "^0.9.4",
59-
"tsx": "^4.20.3",
60-
"typescript": "^5.8.3",
59+
"tsx": "4.19.4",
60+
"typescript": "5.8.3",
6161
"vitest": "^3.1.3"
6262
},
6363
"repository": {
@@ -75,7 +75,7 @@
7575
"lint": "npm-run-all --parallel 'lint:*'",
7676
"fix": "npm-run-all --serial 'fix:*'",
7777
"next:update": "next-update --keep true --tldr",
78-
"prepack": "tsc --build tsconfig.build.json",
78+
"prepack": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo && tsc --build tsconfig.build.json",
7979
"test:unit": "vitest run --coverage ./test/unit",
8080
"test:integration": "vitest run ./test/integration",
8181
"test:all": "vitest run --coverage",

src/alphalib/types/robots/_index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ import {
283283
interpolatableRobotVideoThumbsInstructionsSchema,
284284
meta as videoThumbsMeta,
285285
} from './video-thumbs.ts'
286+
import {
287+
interpolatableRobotVimeoImportInstructionsSchema,
288+
meta as vimeoImportMeta,
289+
} from './vimeo-import.ts'
286290
import {
287291
interpolatableRobotVimeoStoreInstructionsSchema,
288292
meta as vimeoStoreMeta,
@@ -457,6 +461,7 @@ const robotStepsInstructionsWithHiddenFields = [
457461
robotVideoOndemandInstructionsWithHiddenFieldsSchema,
458462
interpolatableRobotVideoSubtitleInstructionsSchema,
459463
interpolatableRobotVideoThumbsInstructionsSchema,
464+
interpolatableRobotVimeoImportInstructionsSchema,
460465
interpolatableRobotVimeoStoreInstructionsSchema,
461466
interpolatableRobotWasabiImportInstructionsSchema,
462467
interpolatableRobotWasabiStoreInstructionsSchema,
@@ -565,6 +570,7 @@ export const robotsMeta = {
565570
videoOndemandMeta,
566571
videoSubtitleMeta,
567572
videoThumbsMeta,
573+
vimeoImportMeta,
568574
vimeoStoreMeta,
569575
wasabiImportMeta,
570576
wasabiStoreMeta,

0 commit comments

Comments
 (0)