Skip to content

Commit f003382

Browse files
committed
switch to vitest
1 parent 7daf13b commit f003382

12 files changed

+2238
-2809
lines changed

.vscode/launch.json

+16-15
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,27 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "Current Test File",
8+
"name": "Debug Current Test File",
99
"type": "node",
1010
"request": "launch",
11-
"cwd": "${workspaceFolder}/${relativeFileDirname}",
12-
"runtimeExecutable": "pnpm",
11+
"autoAttachChildProcesses": true,
12+
"skipFiles": [
13+
"<node_internals>/**",
14+
"**/node_modules/**"
15+
],
16+
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs",
17+
"args": [
18+
"run",
19+
"${relativeFile}"
20+
],
21+
"env": {
22+
"VITEST_DEBUG": "true"
23+
},
1324
"runtimeArgs": [
14-
"jest",
15-
"${file}",
16-
"--no-cache",
17-
"--watchAll=false",
18-
"--runInBand"
25+
"--no-lazy"
1926
],
20-
"env": { "JEST_DEBUG": "true" },
21-
"console": "integratedTerminal",
22-
"internalConsoleOptions": "neverOpen",
2327
"smartStep": true,
24-
"skipFiles": [
25-
"${workspaceFolder}/node_modules/**/*.js",
26-
"<node_internals>/**/*.js"
27-
]
28+
"console": "integratedTerminal"
2829
}
2930
]
3031
}

jest.config.cjs

-39
This file was deleted.

jestSetup.ts

-4
This file was deleted.

package.json

+5-21
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"type": "module",
2828
"main": "./dist/prod/index.cjs",
2929
"module": "./dist/prod/index.modern.js",
30-
"umd:main": "./dist/prod/index.umd.js",
3130
"exports": {
3231
"require": "./dist/prod/index.cjs",
3332
"development": "./dist/dev/index.modern.js",
@@ -45,9 +44,8 @@
4544
"test": "jest --verbose",
4645
"test:watch": "jest --watch",
4746
"test:ci": "jest --runInBand --ci",
48-
"build:prod": "cross-env NODE_ENV=production microbundle --tsconfig ./tsconfig.json --format modern,cjs,umd --output dist/prod/index.js",
49-
"build:dev": "cross-env NODE_ENV=development microbundle --define process.env.NODE_ENV=development --tsconfig ./tsconfig.json --generateTypes false --format modern --output dist/dev/index.js",
50-
"build": "rm -rf ./dist && pnpm build:dev && pnpm build:prod",
47+
"build:prod": "NODE_ENV=production microbundle --tsconfig ./tsconfig.json --format modern,cjs --output dist/prod/index.js --target node",
48+
"build": "rm -rf ./dist && pnpm build:prod",
5149
"gen:docs": "rm -rf ./docs/api && typedoc --options typedoc.cjs",
5250
"prepublishOnly": "pnpm build",
5351
"prepare": "husky install",
@@ -62,32 +60,18 @@
6260
},
6361
"homepage": "https://github.com/ivandotv/puntoenv#readme",
6462
"devDependencies": {
65-
"@babel/core": "^7.23.9",
66-
"@babel/preset-env": "^7.23.9",
67-
"@babel/preset-typescript": "^7.23.3",
6863
"@changesets/cli": "^2.27.1",
69-
"@types/jest": "^29.5.12",
7064
"@types/node": "^20.11.19",
71-
"@typescript-eslint/eslint-plugin": "^7.0.2",
72-
"@typescript-eslint/parser": "^7.0.2",
73-
"cross-env": "^7.0.3",
74-
"eslint": "^8.56.0",
75-
"eslint-config-prettier": "^9.1.0",
76-
"eslint-plugin-jest": "^27.9.0",
77-
"eslint-plugin-prettier": "^5.1.3",
78-
"eslint-plugin-promise": "^6.1.1",
79-
"eslint-plugin-tsdoc": "^0.2.17",
8065
"husky": "^9.0.11",
81-
"jest": "^29.7.0",
82-
"jest-mock-console": "^2.0.0",
83-
"jest-watch-typeahead": "^2.2.2",
8466
"lint-staged": "^15.2.2",
8567
"microbundle": "^0.15.1",
86-
"prettier": "^3.2.5",
8768
"shx": "^0.3.4",
8869
"typedoc": "^0.25.8",
8970
"typedoc-plugin-markdown": "^3.17.1",
9071
"typescript": "^5.3.3",
72+
"vite": "^5.1.5",
73+
"vite-plugin-dts": "^3.7.3",
74+
"vitest": "^1.3.1",
9175
"zx": "^7.2.3"
9276
},
9377
"dependencies": {

0 commit comments

Comments
 (0)