2 Commits

Author SHA1 Message Date
2a21ac3075 v1.12.6
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-03-24 19:18:35 +00:00
bd3823741b fix(build): remove skiplibcheck from the build script 2026-03-24 19:18:35 +00:00
5 changed files with 11 additions and 5 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2026-03-24 - 1.12.6 - fix(build)
remove skiplibcheck from the build script
- Updates the build command to run tsbuild without the --skiplibcheck flag.
- Tightens TypeScript build validation by including library type checks during builds.
## 2026-03-24 - 1.12.5 - fix(package)
bump package version to 1.12.5

View File

@@ -1,6 +1,6 @@
{
"name": "@git.zone/tsview",
"version": "1.12.5",
"version": "1.12.6",
"private": false,
"description": "A CLI tool for viewing S3 and MongoDB data with a web UI",
"main": "dist_ts/index.js",
@@ -10,7 +10,7 @@
"license": "MIT",
"scripts": {
"test": "pnpm run build && tstest test/ --verbose",
"build": "pnpm run bundle && tsbuild --allowimplicitany --skiplibcheck",
"build": "pnpm run bundle && tsbuild --allowimplicitany",
"bundle": "tsbundle",
"startTs": "node cli.ts.js",
"watch": "tswatch",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsview',
version: '1.12.5',
version: '1.12.6',
description: 'A CLI tool for viewing S3 and MongoDB data with a web UI'
}

File diff suppressed because one or more lines are too long

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsview',
version: '1.12.5',
version: '1.12.6',
description: 'A CLI tool for viewing S3 and MongoDB data with a web UI'
}