Compare commits

..

2 Commits

Author SHA1 Message Date
jkunz c250bbddaf v2.0.22 2026-04-30 10:03:06 +00:00
jkunz 8fabbf6740 fix(build): tighten TypeScript build configuration and refresh package metadata 2026-04-30 10:03:06 +00:00
5 changed files with 518 additions and 2391 deletions
+7
View File
@@ -1,5 +1,12 @@
# Changelog
## 2026-04-30 - 2.0.22 - fix(build)
tighten TypeScript build configuration and refresh package metadata
- enable noImplicitAny in tsconfig and remove the corresponding build flag from the build script
- update development and runtime dependency patch versions
- add packageManager metadata and include the license file in published package contents
## 2026-03-26 - 2.0.21 - fix(build)
migrate project tooling and tests to the smartconfig setup and updated IndexedDB dependencies
+9 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@push.rocks/webstore",
"version": "2.0.21",
"version": "2.0.22",
"private": false,
"description": "A high-performance storage solution for web applications using IndexedDB.",
"main": "dist_ts/index.js",
@@ -10,22 +10,21 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.1",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/smartntml": "^2.0.8",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^25.5.0"
"@types/node": "^25.6.0"
},
"dependencies": {
"@api.global/typedrequest-interfaces": "^3.0.19",
"@push.rocks/lik": "^6.4.0",
"@push.rocks/lik": "^6.4.1",
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartjson": "^6.0.0",
"@push.rocks/smartjson": "^6.0.1",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrx": "^3.0.10",
"fake-indexeddb": "^6.2.5",
@@ -44,6 +43,7 @@
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"readme.md"
],
"keywords": [
@@ -78,5 +78,6 @@
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webstore.git"
}
},
"packageManager": "pnpm@10.28.2"
}
+500 -2382
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/webstore',
version: '2.0.21',
version: '2.0.22',
description: 'A high-performance storage solution for web applications using IndexedDB.'
}
+1
View File
@@ -5,6 +5,7 @@
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noImplicitAny": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"types": ["node"]