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.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')
console.log(`Prepared ${destDir}`)
}

View file

@ -2,6 +2,13 @@
## 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
### Fixes

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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