2 Commits

Author SHA1 Message Date
6117b20cc5 1.2.4
All checks were successful
CI / Type Check & Lint (push) Successful in 11s
CI / Build Test (Current Platform) (push) Successful in 22s
CI / Build All Platforms (push) Successful in 1m55s
Release / build-and-release (push) Successful in 2m8s
2025-10-23 23:35:18 +00:00
a88b032597 fix(deno): dependencies in CI 2025-10-23 23:35:18 +00:00
4 changed files with 11 additions and 3 deletions

View File

@@ -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

View File

@@ -1,7 +1,8 @@
{
"name": "@serve.zone/spark",
"version": "1.2.3",
"version": "1.2.4",
"exports": "./mod.ts",
"nodeModulesDir": "auto",
"tasks": {
"dev": "deno run --allow-all mod.ts",
"compile": "deno task compile:all",

View File

@@ -1,6 +1,6 @@
{
"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.",
"keywords": [
"server management",

View File

@@ -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.'
}