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
7 changes: 7 additions & 0 deletions .changeset/modern-preact-toolchain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@renderify/core": patch
"@renderify/runtime": patch
---

Refresh the Preact development dependencies used to validate the core and
runtime packages.
30 changes: 28 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"$schema": "https://biomejs.dev/schemas/2.5.3/schema.json",
"files": {
"includes": [
"**",
Expand All @@ -17,7 +17,33 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true
"preset": "recommended",
"suspicious": {
"noUndeclaredEnvVars": {
"level": "on",
"options": {
"allowedEnvVars": [
// Runtime configuration remains dynamic in built packages and CLI commands.
"PORT",
"RENDERIFY_CODEX_.*",
"RENDERIFY_HOME",
"RENDERIFY_JSPM_CDN_URL",
"RENDERIFY_LLM_.*",
"RENDERIFY_PLAYGROUND_.*",
"RENDERIFY_RUNTIME_.*",
"RENDERIFY_SECURITY_PROFILE",
"RENDERIFY_STRICT_SECURITY",
// Direct scripts and uncached tasks do not contribute these values to Turbo outputs.
"GITHUB_BASE_REF",
"GITHUB_STEP_SUMMARY",
"RELEASE_TAG",
"RENDERIFY_BENCH_.*",
"RENDERIFY_CHANGESET_.*",
"npm_config_user_agent"
]
}
}
}
}
},
"formatter": {
Expand Down
25 changes: 16 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,24 @@
"author": "unadlib",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@biomejs/biome": "^2.5.3",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@modelcontextprotocol/ext-apps": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^25.7.0",
"commitizen": "^4.3.1",
"@types/node": "^26.1.1",
"commitizen": "^4.3.2",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"playwright": "^1.60.0",
"preact": "^10.29.1",
"lint-staged": "^17.0.8",
"playwright": "^1.61.1",
"preact": "^10.29.7",
"tinybench": "^6.0.2",
"tsup": "^8.5.0",
"tsx": "^4.21.0",
"turbo": "^2.9.12",
"typescript": "^6.0.3",
"tsx": "^4.23.0",
"turbo": "^2.10.4",
"typescript": "^7.0.2",
"zod": "^4.4.3"
},
"config": {
Expand All @@ -85,6 +85,13 @@
"rollup": "4.60.3",
"tmp": "0.2.5"
},
"packageExtensions": {
"tsup@8.5.1": {
"optionalDependencies": {
"typescript": "6.0.3"
}
}
},
"onlyBuiltDependencies": [
"esbuild"
]
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@renderify/ir": "workspace:^",
"@renderify/security": "workspace:^",
"@renderify/runtime": "workspace:^",
"preact": "^10.29.1",
"preact-render-to-string": "^6.6.7"
"preact": "^10.29.7",
"preact-render-to-string": "^6.7.0"
}
}
2 changes: 1 addition & 1 deletion packages/core/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
},
"sideEffects": false,
"dependencies": {
"es-module-lexer": "^2.1.0"
"es-module-lexer": "^2.3.1"
}
}
2 changes: 1 addition & 1 deletion packages/ir/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/llm/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-app/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/renderify/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@renderify/ir": "workspace:^",
"@renderify/security": "workspace:^",
"esbuild": "^0.28.1",
"preact": "^10.29.1",
"preact-render-to-string": "^6.6.7"
"preact": "^10.29.7",
"preact-render-to-string": "^6.7.0"
}
}
2 changes: 1 addition & 1 deletion packages/runtime/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/security/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
dts: {
compilerOptions: {
composite: false,
baseUrl: ".",
ignoreDeprecations: "6.0",
paths: {},
},
},
Expand Down
Loading