Skip to content

Commit f5e0290

Browse files
authored
chore(deps): bump (#1368)
## 🧰 Changes **before** ``` Package Current Wanted Latest Location Depended by @biomejs/biome 2.2.3 2.2.5 2.2.5 node_modules/@biomejs/biome rdme @commitlint/cli 19.8.1 19.8.1 20.1.0 node_modules/@commitlint/cli rdme @commitlint/config-conventional 19.8.1 19.8.1 20.0.0 node_modules/@commitlint/config-conventional rdme @oclif/core 4.5.3 4.5.4 4.5.4 node_modules/@oclif/core rdme @oclif/plugin-autocomplete 3.2.34 3.2.35 3.2.35 node_modules/@oclif/plugin-autocomplete rdme @oclif/plugin-help 6.2.32 6.2.33 6.2.33 node_modules/@oclif/plugin-help rdme @oclif/plugin-plugins 5.4.46 5.4.49 5.4.49 node_modules/@oclif/plugin-plugins rdme @oclif/plugin-warn-if-update-available 3.1.46 3.1.48 3.1.48 node_modules/@oclif/plugin-warn-if-update-available rdme @oclif/test 4.1.13 4.1.14 4.1.14 node_modules/@oclif/test rdme @readme/standards 2.1.1 2.2.0 2.2.0 node_modules/@readme/standards rdme @rollup/plugin-node-resolve 16.0.1 16.0.2 16.0.2 node_modules/@rollup/plugin-node-resolve rdme ci-info 4.3.0 4.3.1 4.3.1 node_modules/ci-info rdme configstore 7.0.0 7.1.0 7.1.0 node_modules/configstore rdme debug 4.4.1 4.4.3 4.4.3 node_modules/debug rdme knip 5.63.1 5.64.2 5.64.2 node_modules/knip rdme oclif 4.22.18 4.22.29 4.22.29 node_modules/oclif rdme ora 8.2.0 8.2.0 9.0.0 node_modules/ora rdme rollup 4.50.1 4.52.4 4.52.4 node_modules/rollup rdme tsx 4.20.5 4.20.6 4.20.6 node_modules/tsx rdme type-fest 4.41.0 4.41.0 5.0.1 node_modules/type-fest rdme typescript 5.9.2 5.9.3 5.9.3 node_modules/typescript rdme undici 5.29.0 5.29.0 7.16.0 node_modules/undici rdme ``` **after** ``` Package Current Wanted Latest Location Depended by undici 5.29.0 5.29.0 7.16.0 node_modules/undici rdme ```
1 parent 62c9bba commit f5e0290

32 files changed

+1641
-1557
lines changed

__tests__/commands/changelog/upload.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import type { OclifOutput } from '../../helpers/oclif.js';
2+
13
import fs from 'node:fs';
24

35
import prompts from 'prompts';
@@ -6,7 +8,7 @@ import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from 'vite
68
import Command from '../../../src/commands/changelog/upload.js';
79
import { getAPIv1Mock, getAPIv2Mock, getAPIv2MockForGHA } from '../../helpers/get-api-mock.js';
810
import { githubActionsEnv } from '../../helpers/git-mock.js';
9-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
11+
import { runCommand } from '../../helpers/oclif.js';
1012

1113
const key = 'rdme_123';
1214
const authorization = `Bearer ${key}`;

__tests__/commands/custompages/upload.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import type { OclifOutput } from '../../helpers/oclif.js';
2+
13
import fs from 'node:fs';
24

35
import prompts from 'prompts';
@@ -6,7 +8,7 @@ import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from 'vite
68
import CustomPagesCommand from '../../../src/commands/custompages/upload.js';
79
import { getAPIv1Mock, getAPIv2Mock, getAPIv2MockForGHA } from '../../helpers/get-api-mock.js';
810
import { githubActionsEnv } from '../../helpers/git-mock.js';
9-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
11+
import { runCommand } from '../../helpers/oclif.js';
1012

1113
const key = 'rdme_123';
1214
const authorization = `Bearer ${key}`;

__tests__/commands/docs/migrate.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import type { OclifOutput } from '../../helpers/oclif.js';
2+
13
import { beforeAll, describe, expect, it } from 'vitest';
24

35
import Command from '../../../src/commands/docs/migrate.js';
4-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
6+
import { runCommand } from '../../helpers/oclif.js';
57

68
describe('rdme docs migrate', () => {
79
let run: (args?: string[]) => OclifOutput;

__tests__/commands/login.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
import type { OclifOutput } from '../helpers/oclif.js';
2+
13
import prompts from 'prompts';
24
import { afterEach, beforeAll, describe, expect, it } from 'vitest';
35

46
import Command from '../../src/commands/login.js';
57
import configStore from '../../src/lib/configstore.js';
68
import { getAPIv1Mock } from '../helpers/get-api-mock.js';
7-
import { type OclifOutput, runCommand } from '../helpers/oclif.js';
9+
import { runCommand } from '../helpers/oclif.js';
810

911
const apiKey = 'abcdefg';
1012
const email = '[email protected]';

__tests__/commands/logout.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import type { OclifOutput } from '../helpers/oclif.js';
2+
13
import { afterEach, beforeAll, describe, expect, it } from 'vitest';
24

35
import Command from '../../src/commands/logout.js';
46
import configStore from '../../src/lib/configstore.js';
5-
import { type OclifOutput, runCommand } from '../helpers/oclif.js';
7+
import { runCommand } from '../helpers/oclif.js';
68

79
describe('rdme logout', () => {
810
let run: (args?: string[]) => OclifOutput;

__tests__/commands/openapi/convert.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
import type { OASDocument } from 'oas/types';
2+
import type { MockInstance } from 'vitest';
3+
import type { OclifOutput } from '../../helpers/oclif.js';
24

35
import fs from 'node:fs';
46

57
import prompts from 'prompts';
6-
import { afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi } from 'vitest';
8+
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from 'vitest';
79

810
import Command from '../../../src/commands/openapi/convert.js';
9-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
11+
import { runCommand } from '../../helpers/oclif.js';
1012

1113
describe('rdme openapi convert', () => {
1214
let fsWriteFileSyncSpy: MockInstance<typeof fs.writeFileSync>;

__tests__/commands/openapi/inspect.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import type { OclifOutput } from '../../helpers/oclif.js';
2+
13
import { beforeAll, describe, expect, it } from 'vitest';
24

35
import Command from '../../../src/commands/openapi/inspect.js';
4-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
6+
import { runCommand } from '../../helpers/oclif.js';
57

68
describe('rdme openapi inspect', () => {
79
let run: (args?: string[]) => OclifOutput;

__tests__/commands/openapi/reduce.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
import type { OASDocument } from 'oas/types';
2+
import type { MockInstance } from 'vitest';
3+
import type { OclifOutput } from '../../helpers/oclif.js';
24

35
import fs from 'node:fs';
46

57
import prompts from 'prompts';
6-
import { afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi } from 'vitest';
8+
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from 'vitest';
79

810
import Command from '../../../src/commands/openapi/reduce.js';
9-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
11+
import { runCommand } from '../../helpers/oclif.js';
1012

1113
describe('rdme openapi reduce', () => {
1214
let fsWriteFileSyncSpy: MockInstance<typeof fs.writeFileSync>;

__tests__/commands/openapi/resolve.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
import type { MockInstance } from 'vitest';
2+
import type { OclifOutput } from '../../helpers/oclif.js';
3+
14
import fs from 'node:fs';
25

36
import prompts from 'prompts';
4-
import { afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi } from 'vitest';
7+
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from 'vitest';
58

69
import Command from '../../../src/commands/openapi/resolve.js';
7-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
10+
import { runCommand } from '../../helpers/oclif.js';
811

912
describe('openapi resolve', () => {
1013
let fsWriteFileSyncSpy: MockInstance<typeof fs.writeFileSync>;

__tests__/commands/openapi/upload.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import type { OclifOutput } from '../../helpers/oclif.js';
2+
13
import nock from 'nock';
24
import prompts from 'prompts';
35
import slugify from 'slugify';
@@ -7,7 +9,7 @@ import Command from '../../../src/commands/openapi/upload.js';
79
import petstore from '../../__fixtures__/petstore-simple-weird-version.json' with { type: 'json' };
810
import { getAPIv2Mock, getAPIv2MockForGHA } from '../../helpers/get-api-mock.js';
911
import { githubActionsEnv } from '../../helpers/git-mock.js';
10-
import { type OclifOutput, runCommand } from '../../helpers/oclif.js';
12+
import { runCommand } from '../../helpers/oclif.js';
1113

1214
const key = 'rdme_123';
1315
const branch = '1.0.0';

0 commit comments

Comments
 (0)