Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# pkg.pr.new registry bridge (added by test-pkg-pr-new-migrate.sh)
registry=https://pkg-pr-registry-bridge.void.app/
Comment on lines +1 to +2

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The .npmrc file appears to have been generated by the test-pkg-pr-new-migrate.sh script and points to a temporary registry bridge (https://pkg-pr-registry-bridge.void.app/). If this was committed accidentally, please remove it or add it to .gitignore to prevent overriding the registry for other developers or CI environments.

2 changes: 1 addition & 1 deletion core/__tests__/git-state.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createRequire } from 'node:module';
import { tmpdir } from 'node:os';
import { dirname, join } from 'node:path';
import { promisify } from 'node:util';
import { afterAll, beforeAll, bench, describe } from 'vitest';
import { afterAll, beforeAll, bench, describe } from 'vite-plus/test';
import type { RepositoryState, ReviewSource } from '../types.ts';

type GitStateModule = {
Expand Down
2 changes: 1 addition & 1 deletion core/__tests__/gitlab.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createRequire } from 'node:module';
import { describe, expect, test } from 'vitest';
import { describe, expect, test } from 'vite-plus/test';

const require = createRequire(import.meta.url);
type GitLabPosition = Record<string, unknown> & {
Expand Down
907 changes: 565 additions & 342 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ blockExoticSubdeps: false
minimumReleaseAgeExclude:
- '@nkzw/*'
catalog:
vite: npm:@voidzero-dev/vite-plus-core@^0.1.24
vite-plus: ^0.1.24
vitest: npm:@voidzero-dev/vite-plus-test@^0.1.24
vite: npm:@voidzero-dev/vite-plus-core@0.0.0-commit.4f61f920640a17d1ebd019f516e883f6de6a9811
vite-plus: 0.0.0-commit.4f61f920640a17d1ebd019f516e883f6de6a9811
vitest: 4.1.9
nodeLinker: hoisted
onlyBuiltDependencies:
- '@nkzw/mdx-editor'
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"skipLibCheck": true,
"strict": true,
"target": "es2017",
"types": ["vite/client"]
"types": ["vite-plus/client"]
},
"exclude": ["core/node_modules", "dist", "node_modules", "out"],
"include": ["**/*.cjs", "**/*.ts", "**/*.tsx"]
Expand Down
Loading