Release v0.11.5

This commit is contained in:
Danila Poyarkov 2026-04-08 21:38:44 +03:00
parent f2136c6be6
commit 2c3191cf96
8 changed files with 20 additions and 6 deletions

View file

@ -216,6 +216,13 @@ jobs:
} }
delete json.scripts delete json.scripts
delete json.devDependencies delete json.devDependencies
if (json.publishConfig) {
for (const [key, value] of Object.entries(json.publishConfig)) {
if (key === 'access' || key === 'provenance' || key === 'registry') continue
json[key] = value
}
delete json.publishConfig
}
fs.writeFileSync(path.join(destDir, 'package.json'), JSON.stringify(json, null, 2) + '\n') fs.writeFileSync(path.join(destDir, 'package.json'), JSON.stringify(json, null, 2) + '\n')
console.log(`Prepared ${destDir}`) console.log(`Prepared ${destDir}`)
} }

View file

@ -2,6 +2,13 @@
## Unreleased ## Unreleased
## 0.11.5 — 2026-04-08
### Fixes
- Fix published npm packages resolving to TypeScript source instead of compiled JavaScript — `publishConfig.exports` overrides are now applied during CI publish
- Fix Windows CI build failures caused by backslash file paths in custom lint rules
## 0.11.4 — 2026-04-08 ## 0.11.4 — 2026-04-08
### Fixes ### Fixes

View file

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "OpenPencil", "productName": "OpenPencil",
"version": "0.11.4", "version": "0.11.5",
"identifier": "net.dannote.open-pencil", "identifier": "net.dannote.open-pencil",
"build": { "build": {
"beforeDevCommand": "bun run dev", "beforeDevCommand": "bun run dev",

View file

@ -1,7 +1,7 @@
{ {
"name": "open-pencil-app", "name": "open-pencil-app",
"private": true, "private": true,
"version": "0.11.4", "version": "0.11.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"workspaces": [ "workspaces": [

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/cli", "name": "@open-pencil/cli",
"version": "0.11.4", "version": "0.11.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"bin": { "bin": {

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/core", "name": "@open-pencil/core",
"version": "0.11.4", "version": "0.11.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"sideEffects": false, "sideEffects": false,

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/mcp", "name": "@open-pencil/mcp",
"version": "0.11.4", "version": "0.11.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"main": "./dist/server.js", "main": "./dist/server.js",

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/vue", "name": "@open-pencil/vue",
"version": "0.11.4", "version": "0.11.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"exports": { "exports": {