Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move vitest config files to test folder #202

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pnpm install

After the install completes, pnpm links packages across the project for development and [git hooks](https://github.com/toplenboren/simple-git-hooks) are set up.

> **Note:** In case you have to install new packages or upgrade packages make sure to use **pnpm@8.3.1** and **typescript@5.0.4**
> **Note:** In case you have to install new packages or upgrade packages make sure to use **pnpm@8.8.0** and **typescript@5.0.4**

<div align="right">
<a href="#basic-guide">&uarr; back to top</a></b>
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"type": "module",
"scripts": {
"bench": "vitest bench",
"bench": "vitest bench -c ./packages/abitype/test/vitest.config.ts",
"build": "pnpm run --r --filter \"./packages/**\" build",
"changeset:publish": "pnpm version:update && pnpm build && bun .scripts/generateProxyPackages.ts && changeset publish",
"changeset:version": "changeset version && pnpm version:update",
Expand All @@ -18,10 +18,10 @@
"preinstall": "npx only-allow@1.1.1 pnpm",
"prepare": "npx simple-git-hooks",
"prepublishOnly": "bun .scripts/formatPackageJson.ts",
"test": "vitest",
"test": "vitest -c ./packages/abitype/test/vitest.config.ts",
"test:build": "pnpm run --r --parallel test:build",
"test:cov": "vitest run --coverage",
"test:typecheck": "vitest typecheck",
"test:cov": "vitest run --coverage -c ./packages/abitype/test/vitest.config.ts",
"test:typecheck": "vitest typecheck -c ./packages/abitype/test/vitest.config.ts",
"test:update": "vitest --update",
"trace": "tsc --noEmit --generateTrace ./playgrounds/performance/out --incremental false --project playgrounds/performance/tsconfig.json && echo \"Open playgrounds/performance/out/trace.json in https://ui.perfetto.dev\"",
"typecheck": "pnpm run --r --parallel typecheck && tsc --noEmit",
Expand Down
File renamed without changes.
File renamed without changes.
Loading