feat: add base mod

This commit is contained in:
2024-07-19 18:49:37 +02:00
parent f1764732c3
commit 4ffcb4a2fa
8 changed files with 68 additions and 13 deletions

View File

@@ -1,7 +1,8 @@
{
"name": "@valkyr/testcontainers",
"version": "1.0.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./postgres": "./containers/postgres.ts"
},
"imports": {
@@ -24,6 +25,15 @@
"fmt": {
"lineWidth": 120
},
"publish": {
"exclude": [
".eslint",
".github",
".vscode",
".gitignore",
"tests"
]
},
"tasks": {
"lint": "deno lint && npx eslint -c .eslint/eslint.config.mjs .",
"test": "export ENVIRONMENT=testing && deno test --allow-all --unstable-ffi"