0.1.0 #1

Merged
Thilawyn merged 24 commits from next into master 2024-01-05 00:39:33 +01:00
5 changed files with 15 additions and 0 deletions
Showing only changes of commit d0e0962535 - Show all commits

1
.npmrc Normal file
View File

@@ -0,0 +1 @@
@thilawyn:registry=https://git.jvalver.de/api/packages/thilawyn/npm/

BIN
bun.lockb

Binary file not shown.

2
bunfig.toml Normal file
View File

@@ -0,0 +1,2 @@
[install.scopes]
"@thilawyn" = "https://git.jvalver.de/api/packages/thilawyn/npm/"

View File

@@ -28,6 +28,7 @@
"clean:node": "rm -rf node_modules"
},
"dependencies": {
"@thilawyn/thilatrait": "^20231230.0.0",
"effect": "^2.0.0-next.62",
"lodash-es": "^4.17.21",
"type-fest": "^4.9.0",

View File

@@ -0,0 +1,11 @@
import { trait } from "@thilawyn/thilatrait"
export const JsonifiableSchemable = () =>
trait(Parent => {
abstract class JsonifiableSchemable extends Parent {
}
return JsonifiableSchemable
})