Release v0.11.5
This commit is contained in:
parent
f2136c6be6
commit
2c3191cf96
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
|
@ -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}`)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "open-pencil-app",
|
||||
"private": true,
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"workspaces": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/cli",
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/core",
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"sideEffects": false,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/mcp",
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"main": "./dist/server.js",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/vue",
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue