Skip to content
Merged
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
110 changes: 56 additions & 54 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,64 @@
{
"name": "@rsbuild/plugin-basic-ssl",
"version": "1.2.2",
"repository": "https://github.com/rstackjs/rsbuild-plugin-basic-ssl",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"name": "@rsbuild/plugin-basic-ssl",
"version": "1.2.2",
"repository": "https://github.com/rstackjs/rsbuild-plugin-basic-ssl",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib",
"dev": "rslib -w",
"lint": "biome check .",
"lint:write": "biome check . --write",
"prepare": "simple-git-hooks && npm run build",
"test": "playwright test",
"lint": "biome check .",
"lint:write": "biome check . --write",
"prepare": "simple-git-hooks && npm run build",
"test": "playwright test",
"bump": "npx bumpp"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --no-errors-on-unmatched"
]
},
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"selfsigned": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.58.2",
"@rsbuild/core": "1.7.3",
"@rslib/core": "^0.20.0",
"@types/node": "^24.12.0",
"nano-staged": "^0.9.0",
"playwright": "^1.58.2",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@rsbuild/core": "^1.0.0 || ^2.0.0-0"
},
"peerDependenciesMeta": {
"@rsbuild/core": {
"optional": true
}
},
"packageManager": "pnpm@10.32.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.58.2",
"@rsbuild/core": "1.7.3",
"@rslib/core": "^0.20.0",
"@types/node": "^24.12.0",
"nano-staged": "^0.9.0",
"playwright": "^1.58.2",
"simple-git-hooks": "^2.13.1",
"typescript": "6.0.2"
Copy link

Copilot AI Mar 28, 2026

Choose a reason for hiding this comment

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

Upgrading to TypeScript 6.0.2 may be incompatible with the currently locked build tooling: rsbuild-plugin-dts@0.20.0 (pulled in via @rslib/core@0.20.0) declares a peerDependencies.typescript of ^5, so this change will likely produce peer-dependency warnings and may break d.ts generation. Consider bumping @rslib/core (and/or rsbuild-plugin-dts) to a version that supports TS 6 (e.g. rsbuild-plugin-dts@0.20.1+ which widens the peer range).

Copilot uses AI. Check for mistakes.
},
"peerDependencies": {
"@rsbuild/core": "^1.0.0 || ^2.0.0-0"
},
"peerDependenciesMeta": {
"@rsbuild/core": {
"optional": true
}
},
"packageManager": "pnpm@10.32.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 13 additions & 15 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"target": "ES2020",
"lib": ["DOM", "ESNext"],
"module": "Node16",
"strict": true,
"declaration": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"moduleResolution": "Node16"
},
"include": ["src"]
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"target": "ES2023",
"types": ["node"],
"lib": ["DOM", "ESNext"],
"declaration": true,
"isolatedModules": true,
"skipLibCheck": true,
"module": "nodenext",
"moduleResolution": "nodenext"
},
"include": ["src"]
}
Loading