@nestm/storage 0.1.0-alpha.0 → 0.1.0-alpha.1
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/CHANGELOG.md +7 -0
- package/package.json +19 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @nestm/storage
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 368aa2a: Add the initial NestJS 12 storage integration with named stores, streaming I/O,
|
|
8
|
+
advanced cross-store operations, and an optional guarded HTTP gateway.
|
|
9
|
+
|
|
3
10
|
All notable changes to this project will be documented in this file.
|
|
4
11
|
|
|
5
12
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestm/storage",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.1",
|
|
4
4
|
"description": "NestJS 12 storage integration with named stores, streaming I/O, and an optional guarded HTTP gateway.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kauan Guesser",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=22.12.0"
|
|
40
40
|
},
|
|
41
|
-
"packageManager": "pnpm@11.18.0",
|
|
42
41
|
"publishConfig": {
|
|
43
42
|
"access": "public"
|
|
44
43
|
},
|
|
@@ -62,24 +61,6 @@
|
|
|
62
61
|
"esm",
|
|
63
62
|
"nestm"
|
|
64
63
|
],
|
|
65
|
-
"scripts": {
|
|
66
|
-
"build": "node scripts/clean.mjs && tsc -p tsconfig.build.json",
|
|
67
|
-
"format": "prettier --write . --ignore-unknown",
|
|
68
|
-
"format:check": "prettier --check . --ignore-unknown",
|
|
69
|
-
"lint": "oxlint src/ test/ scripts/ vitest.config.ts vitest.config.e2e.ts",
|
|
70
|
-
"lint:package": "publint",
|
|
71
|
-
"typecheck": "tsc --noEmit",
|
|
72
|
-
"test": "pnpm run test:unit && pnpm run test:e2e",
|
|
73
|
-
"test:unit": "vitest run",
|
|
74
|
-
"test:watch": "vitest",
|
|
75
|
-
"test:coverage": "vitest run --coverage",
|
|
76
|
-
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
|
|
77
|
-
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
|
|
78
|
-
"verify:pack": "pnpm run build && publint --strict",
|
|
79
|
-
"prepack": "pnpm run build",
|
|
80
|
-
"changeset": "changeset",
|
|
81
|
-
"release": "node scripts/publish.mjs"
|
|
82
|
-
},
|
|
83
64
|
"dependencies": {
|
|
84
65
|
"files-sdk": "2.2.2"
|
|
85
66
|
},
|
|
@@ -108,5 +89,22 @@
|
|
|
108
89
|
"supertest": "7.2.2",
|
|
109
90
|
"typescript": "6.0.2",
|
|
110
91
|
"vitest": "4.1.10"
|
|
92
|
+
},
|
|
93
|
+
"scripts": {
|
|
94
|
+
"build": "node scripts/clean.mjs && tsc -p tsconfig.build.json",
|
|
95
|
+
"format": "prettier --write . --ignore-unknown",
|
|
96
|
+
"format:check": "prettier --check . --ignore-unknown",
|
|
97
|
+
"lint": "oxlint src/ test/ scripts/ vitest.config.ts vitest.config.e2e.ts",
|
|
98
|
+
"lint:package": "publint",
|
|
99
|
+
"typecheck": "tsc --noEmit",
|
|
100
|
+
"test": "pnpm run test:unit && pnpm run test:e2e",
|
|
101
|
+
"test:unit": "vitest run",
|
|
102
|
+
"test:watch": "vitest",
|
|
103
|
+
"test:coverage": "vitest run --coverage",
|
|
104
|
+
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
|
|
105
|
+
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
|
|
106
|
+
"verify:pack": "pnpm run build && publint --strict",
|
|
107
|
+
"changeset": "changeset",
|
|
108
|
+
"release": "node scripts/publish.mjs"
|
|
111
109
|
}
|
|
112
|
-
}
|
|
110
|
+
}
|