@git.zone/tstest 3.6.7 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/package.json +4 -4
- package/readme.md +3 -1
- package/ts/00_commitinfo_data.ts +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@git.zone/tstest',
|
|
6
|
-
version: '
|
|
6
|
+
version: '4.0.0',
|
|
7
7
|
description: 'A powerful, modern test runner for TypeScript with multi-runtime support (Node.js, Deno, Bun, Chromium) and a batteries-included test framework.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLGtKQUFrSjtDQUNoSyxDQUFBIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@git.zone/tstest",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A powerful, modern test runner for TypeScript with multi-runtime support (Node.js, Deno, Bun, Chromium) and a batteries-included test framework.",
|
|
6
6
|
"exports": {
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@git.zone/tsbuild": "^4.4.2",
|
|
20
|
-
"@types/node": "^26.1.
|
|
20
|
+
"@types/node": "^26.1.2",
|
|
21
21
|
"tsx": "^4.23.1"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@git.zone/tsbundle": "^2.11.3",
|
|
25
|
-
"@git.zone/tsrun": "^2.0.
|
|
25
|
+
"@git.zone/tsrun": "^2.0.6",
|
|
26
26
|
"@push.rocks/consolecolor": "^2.0.4",
|
|
27
27
|
"@push.rocks/qenv": "^6.1.4",
|
|
28
28
|
"@push.rocks/smartbrowser": "^2.0.11",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@push.rocks/smartfs": "^1.5.1",
|
|
35
35
|
"@push.rocks/smartjson": "^6.0.1",
|
|
36
36
|
"@push.rocks/smartlog": "^3.2.2",
|
|
37
|
-
"@push.rocks/smartmongo": "^
|
|
37
|
+
"@push.rocks/smartmongo": "^8.0.0",
|
|
38
38
|
"@push.rocks/smartnetwork": "^4.7.1",
|
|
39
39
|
"@push.rocks/smartpath": "^6.0.0",
|
|
40
40
|
"@push.rocks/smartpromise": "^4.2.4",
|
package/readme.md
CHANGED
|
@@ -430,7 +430,7 @@ const apiKey = await tapNodeTools.getEnvVarOnDemand('GITHUB_API_KEY');
|
|
|
430
430
|
// Prompts if not set, stores in .nogit/.env for future use
|
|
431
431
|
```
|
|
432
432
|
|
|
433
|
-
### 🗄️ Ephemeral MongoDB
|
|
433
|
+
### 🗄️ Ephemeral MongoDB-Wire Database
|
|
434
434
|
|
|
435
435
|
```typescript
|
|
436
436
|
const mongo = await tapNodeTools.createSmartmongo();
|
|
@@ -438,6 +438,8 @@ const mongo = await tapNodeTools.createSmartmongo();
|
|
|
438
438
|
await mongo.stop();
|
|
439
439
|
```
|
|
440
440
|
|
|
441
|
+
This starts a single-node, memory-backed SmartDB server through `@push.rocks/smartmongo`. It downloads no MongoDB binary, implements only SmartDB's documented MongoDB wire-protocol surface, provides no replication, and currently requires Linux because SmartDB publishes Linux binaries.
|
|
442
|
+
|
|
441
443
|
### 📦 Local S3 Storage
|
|
442
444
|
|
|
443
445
|
```typescript
|
package/ts/00_commitinfo_data.ts
CHANGED