first commit
This commit is contained in:
21
node_modules/@vitest/utils/LICENSE
generated
vendored
Normal file
21
node_modules/@vitest/utils/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
7
node_modules/@vitest/utils/README.md
generated
vendored
Normal file
7
node_modules/@vitest/utils/README.md
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# @vitest/utils
|
||||
|
||||
[](https://npmx.dev/package/@vitest/utils)
|
||||
|
||||
Internal shared utilities used by other Vitest packages.
|
||||
|
||||
[GitHub](https://github.com/vitest-dev/vitest/tree/main/packages/utils) | [Documentation](https://vitest.dev/)
|
||||
1
node_modules/@vitest/utils/diff.d.ts
generated
vendored
Normal file
1
node_modules/@vitest/utils/diff.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './dist/diff.js'
|
||||
1
node_modules/@vitest/utils/error.d.ts
generated
vendored
Normal file
1
node_modules/@vitest/utils/error.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './dist/error.js'
|
||||
1
node_modules/@vitest/utils/helpers.d.ts
generated
vendored
Normal file
1
node_modules/@vitest/utils/helpers.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './dist/helpers.js'
|
||||
102
node_modules/@vitest/utils/package.json
generated
vendored
Normal file
102
node_modules/@vitest/utils/package.json
generated
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"name": "@vitest/utils",
|
||||
"type": "module",
|
||||
"version": "4.1.2",
|
||||
"description": "Shared Vitest utility functions",
|
||||
"license": "MIT",
|
||||
"funding": "https://opencollective.com/vitest",
|
||||
"homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/utils",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vitest-dev/vitest.git",
|
||||
"directory": "packages/utils"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vitest-dev/vitest/issues"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./diff": {
|
||||
"types": "./dist/diff.d.ts",
|
||||
"default": "./dist/diff.js"
|
||||
},
|
||||
"./resolver": {
|
||||
"types": "./dist/resolver.d.ts",
|
||||
"default": "./dist/resolver.js"
|
||||
},
|
||||
"./error": {
|
||||
"types": "./dist/error.d.ts",
|
||||
"default": "./dist/error.js"
|
||||
},
|
||||
"./helpers": {
|
||||
"types": "./dist/helpers.d.ts",
|
||||
"default": "./dist/helpers.js"
|
||||
},
|
||||
"./offset": {
|
||||
"types": "./dist/offset.d.ts",
|
||||
"default": "./dist/offset.js"
|
||||
},
|
||||
"./constants": {
|
||||
"types": "./dist/constants.d.ts",
|
||||
"default": "./dist/constants.js"
|
||||
},
|
||||
"./timers": {
|
||||
"types": "./dist/timers.d.ts",
|
||||
"default": "./dist/timers.js"
|
||||
},
|
||||
"./display": {
|
||||
"types": "./dist/display.d.ts",
|
||||
"default": "./dist/display.js"
|
||||
},
|
||||
"./source-map": {
|
||||
"types": "./dist/source-map.d.ts",
|
||||
"default": "./dist/source-map.js"
|
||||
},
|
||||
"./source-map/node": {
|
||||
"types": "./dist/source-map/node.d.ts",
|
||||
"default": "./dist/source-map/node.js"
|
||||
},
|
||||
"./serialize": {
|
||||
"types": "./dist/serialize.d.ts",
|
||||
"default": "./dist/serialize.js"
|
||||
},
|
||||
"./*": "./*"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"typesVersions": {
|
||||
"*": {
|
||||
"source-map": [
|
||||
"dist/source-map.d.ts"
|
||||
],
|
||||
"source-map/node": [
|
||||
"dist/source-map/node.d.ts"
|
||||
]
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"*.d.ts",
|
||||
"dist"
|
||||
],
|
||||
"dependencies": {
|
||||
"convert-source-map": "^2.0.0",
|
||||
"tinyrainbow": "^3.1.0",
|
||||
"@vitest/pretty-format": "4.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jridgewell/trace-mapping": "0.3.31",
|
||||
"@types/convert-source-map": "^2.0.3",
|
||||
"@types/estree": "^1.0.8",
|
||||
"diff-sequences": "^29.6.3",
|
||||
"loupe": "^3.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "premove dist && rollup -c",
|
||||
"dev": "rollup -c --watch"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user