Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
b1f2eceb75 | |||
de53b3f00c |
@@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-10-17 - 2.6.1 - fix(runtime-adapters)
|
||||||
|
Silence shell version checks for Bun and Deno; add local Claude settings
|
||||||
|
|
||||||
|
- Replace smartshell.exec with execSilent in ts/tstest.classes.runtime.bun.ts to suppress output when checking Bun availability
|
||||||
|
- Replace smartshell.exec with execSilent in ts/tstest.classes.runtime.deno.ts to suppress output when checking Deno availability
|
||||||
|
- Add .claude/settings.local.json to record local Claude agent permissions/config used for development
|
||||||
|
|
||||||
## 2025-10-17 - 2.6.0 - feat(runtime-adapters)
|
## 2025-10-17 - 2.6.0 - feat(runtime-adapters)
|
||||||
Add runtime environment availability check and logger output; normalize runtime version strings
|
Add runtime environment availability check and logger output; normalize runtime version strings
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tstest",
|
"name": "@git.zone/tstest",
|
||||||
"version": "2.6.0",
|
"version": "2.6.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a test utility to run tests that match test/**/*.ts",
|
"description": "a test utility to run tests that match test/**/*.ts",
|
||||||
"exports": {
|
"exports": {
|
||||||
|
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tstest',
|
name: '@git.zone/tstest',
|
||||||
version: '2.6.0',
|
version: '2.6.1',
|
||||||
description: 'a test utility to run tests that match test/**/*.ts'
|
description: 'a test utility to run tests that match test/**/*.ts'
|
||||||
}
|
}
|
||||||
|
@@ -32,7 +32,7 @@ export class BunRuntimeAdapter extends RuntimeAdapter {
|
|||||||
*/
|
*/
|
||||||
async checkAvailable(): Promise<RuntimeAvailability> {
|
async checkAvailable(): Promise<RuntimeAvailability> {
|
||||||
try {
|
try {
|
||||||
const result = await this.smartshellInstance.exec('bun --version', {
|
const result = await this.smartshellInstance.execSilent('bun --version', {
|
||||||
cwd: process.cwd(),
|
cwd: process.cwd(),
|
||||||
onError: () => {
|
onError: () => {
|
||||||
// Ignore error
|
// Ignore error
|
||||||
|
@@ -51,7 +51,7 @@ export class DenoRuntimeAdapter extends RuntimeAdapter {
|
|||||||
*/
|
*/
|
||||||
async checkAvailable(): Promise<RuntimeAvailability> {
|
async checkAvailable(): Promise<RuntimeAvailability> {
|
||||||
try {
|
try {
|
||||||
const result = await this.smartshellInstance.exec('deno --version', {
|
const result = await this.smartshellInstance.execSilent('deno --version', {
|
||||||
cwd: process.cwd(),
|
cwd: process.cwd(),
|
||||||
onError: () => {
|
onError: () => {
|
||||||
// Ignore error
|
// Ignore error
|
||||||
|
Reference in New Issue
Block a user