@uscreen.de/create-fastify-app 2.0.2 → 2.1.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.
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  strategy:
16
16
  matrix:
17
- node-version: [18, 20, 22]
17
+ node-version: [20, 22, 24]
18
18
  steps:
19
19
  - name: Checkout code
20
20
  uses: actions/checkout@v4
@@ -22,7 +22,6 @@ jobs:
22
22
  - name: Install pnpm
23
23
  uses: pnpm/action-setup@v4
24
24
  with:
25
- version: 9
26
25
  run_install: false
27
26
 
28
27
  - name: Use Node.js ${{ matrix.node-version }}
package/README.md CHANGED
@@ -70,6 +70,14 @@ $ pnpm dev
70
70
 
71
71
  ## Changelog
72
72
 
73
+ ### 2.1.0
74
+
75
+ #### Changed
76
+
77
+ - replaced deprecated packages
78
+ - upgraded outdated packages
79
+ - upgraded outdated packages in skeleton
80
+
73
81
  ### 2.0.0
74
82
 
75
83
  #### Changed
package/bin/cli.js CHANGED
@@ -5,8 +5,8 @@ import { fileURLToPath } from 'url'
5
5
  import { createRequire } from 'module'
6
6
 
7
7
  import { program } from 'commander'
8
- import { readPackageUpSync } from 'read-pkg-up'
9
- import { writePackage } from 'write-pkg'
8
+ import { readPackageUpSync } from 'read-package-up'
9
+ import { writePackage } from 'write-package'
10
10
  import fs from 'fs-extra'
11
11
 
12
12
  import { spawn } from 'child_process'
package/manifest.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "2.0.2"
2
+ "version": "2.1.0"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uscreen.de/create-fastify-app",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "description": "cli to create a new @uscreen.de/fastify-app",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -14,21 +14,22 @@
14
14
  "bin": {
15
15
  "create-fastify-app": "./bin/cli.js"
16
16
  },
17
+ "scripts": {
18
+ "lint": "eslint --fix",
19
+ "test": "node --test --test-reporter spec ./test",
20
+ "test:cov": "c8 --reporter=html --reporter=text node --test ./test",
21
+ "test:ci": "find ./test -name '*.test.js' | xargs c8 --reporter=lcov --reporter=text -- node --test"
22
+ },
17
23
  "dependencies": {
18
- "commander": "^14.0.2",
19
- "fs-extra": "^11.3.2",
20
- "read-pkg-up": "^11.0.0",
21
- "write-pkg": "^7.0.0"
24
+ "commander": "^14.0.3",
25
+ "fs-extra": "^11.3.3",
26
+ "read-package-up": "^12.0.0",
27
+ "write-package": "^7.2.0"
22
28
  },
23
29
  "devDependencies": {
24
30
  "@uscreen.de/eslint-config-prettystandard-node": "^0.3.0",
25
31
  "c8": "^10.1.3",
26
32
  "strip-ansi": "^7.1.2"
27
33
  },
28
- "scripts": {
29
- "lint": "eslint --fix",
30
- "test": "node --test --test-reporter spec ./test",
31
- "test:cov": "c8 --reporter=html --reporter=text node --test ./test",
32
- "test:ci": "find ./test -name '*.test.js' | xargs c8 --reporter=lcov --reporter=text -- node --test"
33
- }
34
- }
34
+ "packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
35
+ }
@@ -13,10 +13,10 @@
13
13
  "@fastify/one-line-logger": "^2.0.0",
14
14
  "@uscreen.de/common-esm": "^1.0.0",
15
15
  "@uscreen.de/fastify-app": "^3.0.0",
16
- "env-schema": "^6.0.0",
16
+ "env-schema": "^7.0.0",
17
17
  "fastify": "^5.0.0",
18
18
  "fastify-plugin": "^5.0.0",
19
- "fluent-json-schema": "^5.0.0"
19
+ "fluent-json-schema": "^6.0.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "c8": "^10.0.0",
@@ -1,6 +0,0 @@
1
- node_modules
2
- /.env
3
- /.nyc_output
4
- /coverage
5
- .DS_Store
6
- /.eslintcache