@node-cli/static-server 3.0.0 → 3.0.2

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.
Files changed (1) hide show
  1. package/package.json +10 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-cli/static-server",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "description": "A simple, zero-configuration, command line HTTP server to serve static files locally",
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "node": ">=18",
15
15
  "scripts": {
16
- "build": "yarn run clean && yarn run build:types && yarn run build:js&& yarn run build:barrel",
16
+ "build": "npm-run-all clean build:types build:js build:barrel",
17
17
  "build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
18
18
  "build:js": "swc --source-maps --out-dir dist src --copy-files",
19
19
  "build:types": "tsc",
@@ -23,21 +23,21 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@fastify/caching": "8.3.0",
26
- "@fastify/compress": "6.5.0",
27
- "@fastify/cors": "8.5.0",
28
- "@fastify/static": "6.12.0",
29
- "@node-cli/logger": "1.2.1",
30
- "@node-cli/parser": "2.2.2",
31
- "fastify": "4.25.2",
26
+ "@fastify/compress": "7.0.0",
27
+ "@fastify/cors": "9.0.1",
28
+ "@fastify/static": "7.0.0",
29
+ "@node-cli/logger": "1.2.2",
30
+ "@node-cli/parser": "2.2.3",
31
+ "fastify": "4.26.0",
32
32
  "fastify-plugin": "4.5.1",
33
33
  "fs-extra": "11.2.0",
34
34
  "kleur": "4.1.5",
35
- "open": "10.0.2",
35
+ "open": "10.0.3",
36
36
  "pino-pretty": "10.3.1",
37
37
  "portfinder": "1.0.32"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "ffb3d3c09d1334bdae6f3b72df8682f59081a048"
42
+ "gitHead": "9fe243cae37a21e50ce133a1fa7045139157e39a"
43
43
  }