@vnodes/nestjs 0.0.23 → 0.0.25

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.
@@ -0,0 +1,2 @@
1
+ export * from '@as-integrations/fastify';
2
+ //# sourceMappingURL=as-integrations-fastify.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"as-integrations-fastify.d.ts","sourceRoot":"","sources":["../../src/manual/as-integrations-fastify.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from '@as-integrations/fastify';
2
+
3
+ //# sourceMappingURL=as-integrations-fastify.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/manual/as-integrations-fastify.ts"],"sourcesContent":["export * from '@as-integrations/fastify';\n"],"names":[],"mappings":"AAAA,cAAc,2BAA2B"}
@@ -0,0 +1,3 @@
1
+ export type { ExtendedInformation, FastifyStaticOptions, ListDir, ListFile, ListOptions, ListOptionsHtmlFormat, ListOptionsJsonFormat, ListRender, SendOptions, SetHeadersResponse, } from '@fastify/static';
2
+ export { fastifyStatic } from '@fastify/static';
3
+ //# sourceMappingURL=fastify-static.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fastify-static.d.ts","sourceRoot":"","sources":["../../src/manual/fastify-static.ts"],"names":[],"mappings":"AAAA,YAAY,EACR,mBAAmB,EACnB,oBAAoB,EACpB,OAAO,EACP,QAAQ,EACR,WAAW,EACX,qBAAqB,EACrB,qBAAqB,EACrB,UAAU,EACV,WAAW,EACX,kBAAkB,GACrB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export { fastifyStatic } from '@fastify/static';
2
+
3
+ //# sourceMappingURL=fastify-static.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/manual/fastify-static.ts"],"sourcesContent":["export type {\n ExtendedInformation,\n FastifyStaticOptions,\n ListDir,\n ListFile,\n ListOptions,\n ListOptionsHtmlFormat,\n ListOptionsJsonFormat,\n ListRender,\n SendOptions,\n SetHeadersResponse,\n} from '@fastify/static';\nexport { fastifyStatic } from '@fastify/static';\n"],"names":["fastifyStatic"],"mappings":"AAYA,SAASA,aAAa,QAAQ,kBAAkB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnodes/nestjs",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "@vnodes/nestjs",
5
5
  "keywords": [
6
6
  "nestjs"
@@ -125,11 +125,21 @@
125
125
  "import": "./dist/manual/fastify-compress.js",
126
126
  "default": "./dist/manual/fastify-compress.js"
127
127
  },
128
+ "./fastify-static": {
129
+ "types": "./dist/manual/fastify-static.d.ts",
130
+ "import": "./dist/manual/fastify-static.js",
131
+ "default": "./dist/manual/fastify-static.js"
132
+ },
128
133
  "./fastify-helmet": {
129
134
  "types": "./dist/manual/fastify-helmet.d.ts",
130
135
  "import": "./dist/manual/fastify-helmet.js",
131
136
  "default": "./dist/manual/fastify-helmet.js"
132
137
  },
138
+ "./as-integrations-fastify": {
139
+ "types": "./dist/manual/as-integrations-fastify.d.ts",
140
+ "import": "./dist/manual/as-integrations-fastify.js",
141
+ "default": "./dist/manual/as-integrations-fastify.js"
142
+ },
133
143
  "./types-express": {
134
144
  "types": "./dist/manual/types-express.d.ts",
135
145
  "import": "./dist/manual/types-express.js",
@@ -182,8 +192,10 @@
182
192
  "@swc/helpers": "~0.5.18"
183
193
  },
184
194
  "peerDependencies": {
195
+ "@as-integrations/fastify": "^3.1.0",
185
196
  "@fastify/compress": "^8.3.1",
186
197
  "@fastify/helmet": "^13.0.2",
198
+ "@fastify/static": "^9.1.0",
187
199
  "@nestjs/cache-manager": "^3.1.0",
188
200
  "@nestjs/common": "^11.1.17",
189
201
  "@nestjs/config": "^4.0.3",
@@ -208,8 +220,10 @@
208
220
  "rxjs": "^7.8.2"
209
221
  },
210
222
  "devDependencies": {
223
+ "@as-integrations/fastify": "^3.1.0",
211
224
  "@fastify/compress": "^8.3.1",
212
225
  "@fastify/helmet": "^13.0.2",
226
+ "@fastify/static": "^9.1.0",
213
227
  "@nestjs/cache-manager": "^3.1.0",
214
228
  "@nestjs/common": "^11.1.17",
215
229
  "@nestjs/config": "^4.0.3",
@@ -234,7 +248,7 @@
234
248
  "helmet": "^8.1.0",
235
249
  "multer": "^2.1.1",
236
250
  "rxjs": "^7.8.2",
237
- "@vnodes/fs": "0.0.23"
251
+ "@vnodes/fs": "0.0.25"
238
252
  },
239
253
  "publishConfig": {
240
254
  "access": "public",
package/scripts/build.mjs CHANGED
@@ -7,8 +7,10 @@ const __dirname = dirname(__filename);
7
7
  const packageJsonPath = join(__dirname, '..', 'package.json');
8
8
 
9
9
  const manualPackages = [
10
+ "@as-integrations/fastify",
10
11
  "@fastify/compress",
11
12
  "@fastify/helmet",
13
+ "@fastify/static",
12
14
  "@types/express",
13
15
  "@types/multer",
14
16
  'multer',