Compare commits

...

2 Commits
v4.2.2 ... main

4 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 2026-02-15 - 4.2.3 - fix(test,docs)
increase tstest verbosity, enable logfile, and extend timeout; fix README formatting for company line
- package.json: test script updated to add --verbose, --logfile, and --timeout 120 to tstest invocation
- readme.md: adjusted company line formatting (removed list marker and added trailing spaces) to ensure proper Markdown line break/paragraph
## 2026-02-15 - 4.2.2 - fix(npmextra) ## 2026-02-15 - 4.2.2 - fix(npmextra)
restructure npmextra.json: flatten @git.zone/cli and tsdoc to top-level, add Verdaccio registry and @ship.zone/szci entry, remove deprecated npmci and gitzone keys restructure npmextra.json: flatten @git.zone/cli and tsdoc to top-level, add Verdaccio registry and @ship.zone/szci entry, remove deprecated npmci and gitzone keys

View File

@@ -1,14 +1,14 @@
{ {
"name": "@push.rocks/smarttime", "name": "@push.rocks/smarttime",
"private": false, "private": false,
"version": "4.2.2", "version": "4.2.3",
"description": "Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.", "description": "Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "(tstest ./test)", "test": "(tstest ./test --verbose --logfile --timeout 120)",
"build": "(tsbuild --web && tsbundle npm)", "build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smarttime', name: '@push.rocks/smarttime',
version: '4.2.2', version: '4.2.3',
description: 'Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.' description: 'Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.'
} }