mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-18 13:51:38 -04:00
Merge branch 'main' into v10
This commit is contained in:
5
.changeset/great-onions-matter.md
Normal file
5
.changeset/great-onions-matter.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
Fix a bug causing pnpm to infinitely spawn itself when `manage-package-manager-versions=true` is set and the `.tools` directory is corrupt.
|
||||
5
.changeset/swift-panthers-matter.md
Normal file
5
.changeset/swift-panthers-matter.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
When `manage-package-manager-versions` is set to `true`, errors spawning a self-managed version of `pnpm` will now be shown (instead of being silent).
|
||||
@@ -319,6 +319,13 @@ async function updateManifest (workspaceDir: string, manifest: ProjectManifest,
|
||||
}
|
||||
delete manifest.dependencies['@types/ramda']
|
||||
}
|
||||
if (scripts.test) {
|
||||
Object.assign(manifest, {
|
||||
jest: {
|
||||
preset: '@pnpm/jest-config',
|
||||
},
|
||||
})
|
||||
}
|
||||
return {
|
||||
...manifest,
|
||||
bugs: {
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -1,4 +1,4 @@
|
||||
const path = require("path")
|
||||
const path = require('path')
|
||||
|
||||
const config = {
|
||||
preset: "ts-jest",
|
||||
@@ -15,8 +15,9 @@ const config = {
|
||||
collectCoverage: true,
|
||||
coveragePathIgnorePatterns: ["/node_modules/"],
|
||||
testPathIgnorePatterns: ["/fixtures/", "/__fixtures__/", "<rootDir>/test/utils/.+"],
|
||||
modulePathIgnorePatterns: ['\/__fixtures__\/.*'],
|
||||
testTimeout: 4 * 60 * 1000, // 4 minutes
|
||||
setupFilesAfterEnv: [path.join(__dirname, "jest.setup.js")],
|
||||
setupFilesAfterEnv: [path.join(__dirname, "setupFilesAfterEnv.js")],
|
||||
maxWorkers: "50%",
|
||||
}
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
const { start, prepare } = require('@pnpm/registry-mock')
|
||||
const { promisify } = require('util')
|
||||
const kill = promisify(require('tree-kill'))
|
||||
|
||||
module.exports = () => {
|
||||
if (process.env.PNPM_REGISTRY_MOCK_PORT == null) return
|
||||
@@ -22,6 +24,6 @@ module.exports = () => {
|
||||
})
|
||||
global.killServer = () => {
|
||||
killed = true
|
||||
server.kill()
|
||||
return kill(server.pid)
|
||||
}
|
||||
}
|
||||
3
__utils__/jest-config/globalTeardown.js
Normal file
3
__utils__/jest-config/globalTeardown.js
Normal file
@@ -0,0 +1,3 @@
|
||||
module.exports = () => {
|
||||
return global.killServer?.()
|
||||
}
|
||||
16
__utils__/jest-config/jest-preset.js
Normal file
16
__utils__/jest-config/jest-preset.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const path = require('path')
|
||||
const baseConfig = require('./config')
|
||||
|
||||
if (process.env.PNPM_REGISTRY_MOCK_PORT != null) {
|
||||
module.exports = {
|
||||
...baseConfig,
|
||||
// Many tests change the dist tags of packages.
|
||||
// Unfortunately, this means that if two such tests will run at the same time,
|
||||
// they may break each other.
|
||||
maxWorkers: 1,
|
||||
globalSetup: path.join(__dirname, 'globalSetup.js'),
|
||||
globalTeardown: path.join(__dirname, 'globalTeardown.js'),
|
||||
}
|
||||
} else {
|
||||
module.exports = baseConfig
|
||||
}
|
||||
14
__utils__/jest-config/package.json
Normal file
14
__utils__/jest-config/package.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "@pnpm/jest-config",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"main": "jest-preset.js",
|
||||
"dependencies": {
|
||||
"@pnpm/registry-mock": "catalog:",
|
||||
"@pnpm/worker": "workspace:*",
|
||||
"tree-kill": "catalog:"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/jest-config": "workspace:*"
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
3
cache/api/package.json
vendored
3
cache/api/package.json
vendored
@@ -46,5 +46,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
2
cache/commands/jest.config.js
vendored
2
cache/commands/jest.config.js
vendored
@@ -1,2 +0,0 @@
|
||||
module.exports = require('../../jest-with-registry.config.js')
|
||||
|
||||
5
cache/commands/package.json
vendored
5
cache/commands/package.json
vendored
@@ -34,8 +34,8 @@
|
||||
"@pnpm/logger": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "catalog:",
|
||||
"@zkochan/rimraf": "catalog:",
|
||||
"@types/ramda": "catalog:",
|
||||
"@zkochan/rimraf": "catalog:",
|
||||
"execa": "catalog:"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -54,5 +54,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -40,5 +40,8 @@
|
||||
"@pnpm/catalogs.config": "workspace:*",
|
||||
"@pnpm/catalogs.types": "workspace:*",
|
||||
"@pnpm/workspace.read-manifest": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -35,5 +35,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/catalogs.protocol-parser": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -40,5 +40,8 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/catalogs.resolver": "workspace:*",
|
||||
"@pnpm/catalogs.types": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,5 +34,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/catalogs.types": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -38,5 +38,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -52,5 +52,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,5 +36,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,5 +33,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -69,5 +69,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = config
|
||||
@@ -42,5 +42,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest-with-registry.config.js')
|
||||
@@ -49,5 +49,8 @@
|
||||
"keywords": [
|
||||
"pnpm9"
|
||||
],
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/completion/plugin-commands-completion#readme"
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/completion/plugin-commands-completion#readme",
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -70,5 +70,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -40,5 +40,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,5 +38,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -50,5 +50,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -39,5 +39,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -36,5 +36,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js')
|
||||
|
||||
module.exports = config
|
||||
@@ -49,5 +49,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -39,5 +39,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -41,5 +41,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,5 +34,8 @@
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/crypto/polyfill#readme",
|
||||
"devDependencies": {
|
||||
"@pnpm/crypto.polyfill": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -39,5 +39,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -40,5 +40,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,5 +32,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"devDependencies": {
|
||||
"@pnpm/dedupe.types": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
3
deps/graph-builder/package.json
vendored
3
deps/graph-builder/package.json
vendored
@@ -53,5 +53,8 @@
|
||||
"@pnpm/types": "workspace:*",
|
||||
"path-exists": "catalog:",
|
||||
"ramda": "catalog:"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
1
deps/graph-sequencer/jest.config.js
vendored
1
deps/graph-sequencer/jest.config.js
vendored
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
3
deps/graph-sequencer/package.json
vendored
3
deps/graph-sequencer/package.json
vendored
@@ -35,5 +35,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
3
env/node.fetcher/jest.config.js
vendored
3
env/node.fetcher/jest.config.js
vendored
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js')
|
||||
|
||||
module.exports = config
|
||||
3
env/node.fetcher/package.json
vendored
3
env/node.fetcher/package.json
vendored
@@ -52,5 +52,8 @@
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@types/adm-zip": "catalog:",
|
||||
"node-fetch": "catalog:"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
3
env/node.resolver/jest.config.js
vendored
3
env/node.resolver/jest.config.js
vendored
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js')
|
||||
|
||||
module.exports = config
|
||||
3
env/node.resolver/package.json
vendored
3
env/node.resolver/package.json
vendored
@@ -44,5 +44,8 @@
|
||||
"@pnpm/fetch": "workspace:*",
|
||||
"@pnpm/node.resolver": "workspace:*",
|
||||
"@types/semver": "catalog:"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
3
env/path/jest.config.js
vendored
3
env/path/jest.config.js
vendored
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js')
|
||||
|
||||
module.exports = config
|
||||
3
env/path/package.json
vendored
3
env/path/package.json
vendored
@@ -38,5 +38,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/env.path": "workspace:*"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
3
env/plugin-commands-env/jest.config.js
vendored
3
env/plugin-commands-env/jest.config.js
vendored
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js')
|
||||
|
||||
module.exports = config
|
||||
3
env/plugin-commands-env/package.json
vendored
3
env/plugin-commands-env/package.json
vendored
@@ -72,5 +72,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
3
env/system-node-version/jest.config.js
vendored
3
env/system-node-version/jest.config.js
vendored
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js')
|
||||
|
||||
module.exports = config
|
||||
3
env/system-node-version/package.json
vendored
3
env/system-node-version/package.json
vendored
@@ -40,5 +40,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -58,5 +58,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -61,5 +61,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,5 +37,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest-with-registry.config.js')
|
||||
@@ -87,5 +87,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest-with-registry.config.js')
|
||||
@@ -80,5 +80,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -49,5 +49,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,5 +37,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -49,5 +49,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,5 +41,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -51,5 +51,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -35,5 +35,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config')
|
||||
@@ -68,5 +68,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -42,5 +42,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -37,5 +37,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
module.exports = require('../../jest.config.js')
|
||||
@@ -40,5 +40,8 @@
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
@@ -65,5 +65,8 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "@pnpm/jest-config"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
const config = require('../../jest.config.js');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user