From a88b032597de355a49654d3e5aebf9c1c61e81ee Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 23 Oct 2025 23:35:18 +0000 Subject: [PATCH] fix(deno): dependencies in CI --- changelog.md | 7 +++++++ deno.json | 1 + ts/00_commitinfo_data.ts | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index e1a095e..6a6369f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2025-10-23 - 1.2.4 - fix(deno) +Update deno configuration and add local Claude settings + +- deno.json: add exports pointing to ./mod.ts +- deno.json: enable nodeModulesDir = "auto" to improve compatibility with Node-style dependencies +- Add .claude/settings.local.json for local environment & tooling configuration + ## 2025-10-23 - 1.2.3 - fix(package) Add .claude local settings with development permissions diff --git a/deno.json b/deno.json index 42caf04..0f518e8 100644 --- a/deno.json +++ b/deno.json @@ -2,6 +2,7 @@ "name": "@serve.zone/spark", "version": "1.2.3", "exports": "./mod.ts", + "nodeModulesDir": "auto", "tasks": { "dev": "deno run --allow-all mod.ts", "compile": "deno task compile:all", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 6450852..d8e8eab 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/spark', - version: '1.2.3', + version: '1.2.4', description: 'A comprehensive tool for maintaining and configuring servers, integrating with Docker and supporting advanced task scheduling, targeted at the Servezone infrastructure and used by @serve.zone/cloudly as a cluster node server system manager.' }