mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
chore(deps): update dependency @crowdin/cli to v4.4.1 (master) (#4979)
* chore(deps): update dependency @crowdin/cli to v4.4.1 * clean up * test * missing package migrate * clean up --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Juan Picado <juanpicado19@gmail.com>
This commit is contained in:
parent
4f6609a072
commit
51e571a1ba
7 changed files with 155 additions and 215 deletions
|
@ -29,10 +29,6 @@ coverage/
|
|||
test-storage*
|
||||
test/
|
||||
__mocks__/
|
||||
jestEnvironment.js
|
||||
test/jest.e2e.config.js
|
||||
test/jest.config.functional.js
|
||||
jest.config.js
|
||||
|
||||
# misc
|
||||
contrib/
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
module.exports = {
|
||||
moduleFileExtensions: ['ts', 'js'],
|
||||
transform: {
|
||||
'^.+\\.(js|ts)$': 'babel-jest',
|
||||
},
|
||||
verbose: false,
|
||||
collectCoverage: false,
|
||||
coverageReporters: ['text', 'html'],
|
||||
collectCoverageFrom: ['src/**/*.ts', '!**/node_modules/**', '!**/partials/**', '!**/fixture/**'],
|
||||
coveragePathIgnorePatterns: ['node_modules', 'fixtures'],
|
||||
coverageThreshold: {
|
||||
global: {
|
||||
lines: 85,
|
||||
},
|
||||
},
|
||||
};
|
11
package.json
11
package.json
|
@ -42,7 +42,7 @@
|
|||
"@changesets/changelog-github": "0.5.0",
|
||||
"@changesets/cli": "2.27.10",
|
||||
"@changesets/get-dependents-graph": "2.1.2",
|
||||
"@crowdin/cli": "4.1.1",
|
||||
"@crowdin/cli": "4.4.1",
|
||||
"@dianmora/contributors": "5.0.0",
|
||||
"@emotion/react": "11.10.6",
|
||||
"@emotion/styled": "11.10.6",
|
||||
|
@ -58,10 +58,10 @@
|
|||
"@types/express": "4.17.21",
|
||||
"@types/express-serve-static-core": "4.19.5",
|
||||
"@types/http-errors": "2.0.4",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/jsonwebtoken": "9.0.6",
|
||||
"@types/lodash": "4.17.7",
|
||||
"@types/mime": "3.0.4",
|
||||
"@types/jest": "29.5.14",
|
||||
"@types/minimatch": "5.1.2",
|
||||
"@types/node": "20.14.12",
|
||||
"@types/node-fetch": "2.6.11",
|
||||
|
@ -91,7 +91,6 @@
|
|||
"@vitest/coverage-v8": "2.0.5",
|
||||
"aria-query": "5.1.3",
|
||||
"babel-core": "7.0.0-bridge.0",
|
||||
"babel-jest": "29.7.0",
|
||||
"babel-plugin-dynamic-import-node": "2.3.3",
|
||||
"babel-plugin-emotion": "11.0.0",
|
||||
"concurrently": "8.2.2",
|
||||
|
@ -103,12 +102,6 @@
|
|||
"got": "11.8.6",
|
||||
"husky": "8.0.3",
|
||||
"in-publish": "2.0.1",
|
||||
"jest": "29.7.0",
|
||||
"jest-diff": "29.7.0",
|
||||
"jest-environment-jsdom": "29.7.0",
|
||||
"jest-environment-jsdom-global": "4.0.0",
|
||||
"jest-environment-node": "29.7.0",
|
||||
"jest-junit": "16.0.0",
|
||||
"kleur": "4.1.5",
|
||||
"lint-staged": "11.2.6",
|
||||
"nock": "13.5.1",
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
"test": "cross-env TZ=utc jest",
|
||||
"test": "cross-env TZ=utc vitest run",
|
||||
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
||||
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
||||
"build:js": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import pino from 'pino';
|
||||
import { Writable } from 'stream';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
|
||||
import { createLogger } from '../src';
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import { readFile } from 'fs/promises';
|
|||
import { join } from 'path';
|
||||
import pino from 'pino';
|
||||
import { setTimeout } from 'timers/promises';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
|
||||
import { fileUtils } from '@verdaccio/core';
|
||||
|
||||
|
|
335
pnpm-lock.yaml
335
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue