diff --git a/changelog.md b/changelog.md index 0fae497..de501c2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-03-15 - 1.13.1 - fix(deno) +remove nodeModulesDir from Deno configuration + +- Drops the explicit nodeModulesDir setting from deno.json. +- Keeps the package version unchanged at 1.13.0 while simplifying runtime configuration. + ## 2026-03-15 - 1.13.0 - feat(install) improve installer with version selection, service restart handling, and upgrade documentation diff --git a/deno.json b/deno.json index f9cbbf0..ac8365e 100644 --- a/deno.json +++ b/deno.json @@ -2,7 +2,6 @@ "name": "@serve.zone/onebox", "version": "1.13.0", "exports": "./mod.ts", - "nodeModulesDir": "auto", "tasks": { "test": "deno test --allow-all test/", "test:watch": "deno test --allow-all --watch test/", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0d8bb2c..fc957d7 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/onebox', - version: '1.13.0', + version: '1.13.1', description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 0d8bb2c..fc957d7 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/onebox', - version: '1.13.0', + version: '1.13.1', description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers' }