Skip to content

Commit

Permalink
test: add vitest globals
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabb-c committed Apr 19, 2024
1 parent 9ea9fc0 commit 8249ca8
Show file tree
Hide file tree
Showing 23 changed files with 4,539 additions and 3,325 deletions.
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"rules": {
"recommended": true
},
"ignore": ["lib"]
"ignore": ["node_modules", "lib"]
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100,
"ignore": ["lib"]
"ignore": ["node_modules", "lib"]
}
}
15 changes: 0 additions & 15 deletions env.ts

This file was deleted.

28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,10 @@
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json",
"./*": "./*"
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.cjs"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
Expand Down Expand Up @@ -57,7 +54,7 @@
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@size-limit/preset-small-lib": "^11.1.2",
"@swc/core": "^1.4.14",
"@swc/core": "^1.4.16",
"@types/is-ci": "^3.0.4",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
Expand All @@ -69,16 +66,16 @@
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"msw": "^2.2.13",
"msw": "^2.2.14",
"semantic-release": "^23.0.8",
"size-limit": "^11.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vite-tsconfig-paths": "^4.3.2",
"vitepress": "1.1.0",
"vitepress": "1.1.3",
"vitest": "^1.5.0",
"vue": "^3.4.22",
"zod": "^3.22.4"
"vue": "^3.4.23"
},
"peerDependencies": {
"axios": "^1.6.8",
Expand All @@ -91,5 +88,10 @@
{
"path": "lib/index.js"
}
]
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search", "search-insights"]
}
}
}
Loading

0 comments on commit 8249ca8

Please sign in to comment.