Skip to content

Commit c1bca50

Browse files
authored
Use vitest (#2)
* refactor: use vitest over jest * fix: remove certs until they work * chore: cleanup imports/lint
1 parent 00e1719 commit c1bca50

23 files changed

+402
-147
lines changed

jest.config.ts

Lines changed: 0 additions & 27 deletions
This file was deleted.

package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@valorem-labs-inc/sdk",
3-
"version": "0.0.0-development",
3+
"version": "0.0.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/valorem-labs-inc/sdk.git"
@@ -31,7 +31,7 @@
3131
"prepare": "git submodule update --init --recursive",
3232
"prepublish": "pnpm build",
3333
"semantic-release": "semantic-release",
34-
"test": "jest"
34+
"test": "vitest"
3535
},
3636
"prettier": "@vercel/style-guide/prettier",
3737
"dependencies": {
@@ -51,7 +51,6 @@
5151
"@vercel/style-guide": "^5.0.1",
5252
"babel-loader": "^9.1.3",
5353
"eslint": "^8.51.0",
54-
"jest": "^29.7.0",
5554
"prettier": "^3.0.3",
5655
"semantic-release": "^22.0.5",
5756
"ts-jest": "^29.1.1",
@@ -60,13 +59,11 @@
6059
"tsup": "^7.2.0",
6160
"typedoc": "^0.25.2",
6261
"typedoc-plugin-missing-exports": "^2.1.0",
63-
"typescript": "^5.2.2"
62+
"typescript": "^5.2.2",
63+
"vitest": "^0.34.6"
6464
},
6565
"packageManager": "pnpm@8.6.10",
6666
"engines": {
6767
"node": ">=18"
68-
},
69-
"publishConfig": {
70-
"access": "restricted"
7168
}
7269
}

0 commit comments

Comments
 (0)