Skip to content

Commit

Permalink
Remove dependencies in val-core package
Browse files Browse the repository at this point in the history
Val Core should not have any runtime dependencies - since it is running in quickjs. If we change this, we must make those dependencies available in quickjs as well
  • Loading branch information
freekh committed Sep 1, 2023
1 parent ab3925f commit 829cc9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@
],
"exports": true
},
"dependencies": {
"image-size": "^1.0.2",
"devDependencies": {
"ts-toolbelt": "^9.6.0"
}
}
2 changes: 1 addition & 1 deletion packages/core/src/initSchema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { F } from "ts-toolbelt";
import type { F } from "ts-toolbelt";
import { array } from "./schema/array";
import { number } from "./schema/number";
import { object } from "./schema/object";
Expand Down

0 comments on commit 829cc9e

Please sign in to comment.