Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c250bbddaf | |||
| 8fabbf6740 |
@@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# 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)
|
## 2026-03-26 - 2.0.21 - fix(build)
|
||||||
migrate project tooling and tests to the smartconfig setup and updated IndexedDB dependencies
|
migrate project tooling and tests to the smartconfig setup and updated IndexedDB dependencies
|
||||||
|
|
||||||
|
|||||||
+9
-8
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/webstore",
|
"name": "@push.rocks/webstore",
|
||||||
"version": "2.0.21",
|
"version": "2.0.22",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A high-performance storage solution for web applications using IndexedDB.",
|
"description": "A high-performance storage solution for web applications using IndexedDB.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@@ -10,22 +10,21 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web --allowimplicitany)",
|
"build": "(tsbuild --web)",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^4.4.0",
|
"@git.zone/tsbuild": "^4.4.0",
|
||||||
"@git.zone/tsrun": "^2.0.2",
|
"@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/smartntml": "^2.0.8",
|
||||||
"@push.rocks/tapbundle": "^6.0.3",
|
"@types/node": "^25.6.0"
|
||||||
"@types/node": "^25.5.0"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@api.global/typedrequest-interfaces": "^3.0.19",
|
"@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/smartenv": "^6.0.0",
|
||||||
"@push.rocks/smartjson": "^6.0.0",
|
"@push.rocks/smartjson": "^6.0.1",
|
||||||
"@push.rocks/smartpromise": "^4.2.3",
|
"@push.rocks/smartpromise": "^4.2.3",
|
||||||
"@push.rocks/smartrx": "^3.0.10",
|
"@push.rocks/smartrx": "^3.0.10",
|
||||||
"fake-indexeddb": "^6.2.5",
|
"fake-indexeddb": "^6.2.5",
|
||||||
@@ -44,6 +43,7 @@
|
|||||||
"assets/**/*",
|
"assets/**/*",
|
||||||
"cli.js",
|
"cli.js",
|
||||||
".smartconfig.json",
|
".smartconfig.json",
|
||||||
|
"license",
|
||||||
"readme.md"
|
"readme.md"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@@ -78,5 +78,6 @@
|
|||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://code.foss.global/push.rocks/webstore.git"
|
"url": "https://code.foss.global/push.rocks/webstore.git"
|
||||||
}
|
},
|
||||||
|
"packageManager": "pnpm@10.28.2"
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+500
-2382
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/webstore',
|
name: '@push.rocks/webstore',
|
||||||
version: '2.0.21',
|
version: '2.0.22',
|
||||||
description: 'A high-performance storage solution for web applications using IndexedDB.'
|
description: 'A high-performance storage solution for web applications using IndexedDB.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "NodeNext",
|
"module": "NodeNext",
|
||||||
"moduleResolution": "NodeNext",
|
"moduleResolution": "NodeNext",
|
||||||
|
"noImplicitAny": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"verbatimModuleSyntax": true,
|
"verbatimModuleSyntax": true,
|
||||||
"types": ["node"]
|
"types": ["node"]
|
||||||
|
|||||||
Reference in New Issue
Block a user