@feathersjs/cli 5.0.17 → 5.0.19

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 CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **cli:** Add JS extension to binaries ([#3398](https://github.com/feathersjs/feathers/issues/3398)) ([aaf181d](https://github.com/feathersjs/feathers/commit/aaf181d924d0cb67c7792a54197082c59109264d))
11
+
12
+ ## [5.0.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22)
13
+
14
+ **Note:** Version bump only for package @feathersjs/cli
15
+
6
16
  ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22)
7
17
 
8
18
  ### Bug Fixes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@feathersjs/cli",
3
3
  "description": "The command line interface for creating Feathers applications",
4
- "version": "5.0.17",
4
+ "version": "5.0.19",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/index.js",
7
7
  "type": "module",
8
8
  "bin": {
9
- "feathers": "./bin/feathers"
9
+ "feathers": "./bin/feathers.js"
10
10
  },
11
11
  "keywords": [
12
12
  "feathers",
@@ -47,34 +47,34 @@
47
47
  "prepublish": "npm run compile",
48
48
  "compile": "shx rm -rf lib/ && tsc",
49
49
  "mocha": "mocha --timeout 60000 --config ../../.mocharc.json --require tsx --recursive test/**.test.ts test/**/*.test.ts",
50
- "test": "npm run compile && npm run mocha"
50
+ "test": "npm run compile && npm run mocha && bin/feathers.js --help"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
55
  "dependencies": {
56
- "@feathersjs/generators": "^5.0.17",
56
+ "@feathersjs/generators": "^5.0.19",
57
57
  "chalk": "^5.3.0",
58
58
  "commander": "^11.1.0"
59
59
  },
60
60
  "devDependencies": {
61
- "@feathersjs/adapter-commons": "^5.0.17",
62
- "@feathersjs/authentication": "^5.0.17",
63
- "@feathersjs/authentication-client": "^5.0.17",
64
- "@feathersjs/authentication-local": "^5.0.17",
65
- "@feathersjs/authentication-oauth": "^5.0.17",
66
- "@feathersjs/configuration": "^5.0.17",
67
- "@feathersjs/errors": "^5.0.17",
68
- "@feathersjs/express": "^5.0.17",
69
- "@feathersjs/feathers": "^5.0.17",
70
- "@feathersjs/knex": "^5.0.17",
71
- "@feathersjs/koa": "^5.0.17",
72
- "@feathersjs/mongodb": "^5.0.17",
73
- "@feathersjs/rest-client": "^5.0.17",
74
- "@feathersjs/schema": "^5.0.17",
75
- "@feathersjs/socketio": "^5.0.17",
76
- "@feathersjs/transport-commons": "^5.0.17",
77
- "@feathersjs/typebox": "^5.0.17",
61
+ "@feathersjs/adapter-commons": "^5.0.19",
62
+ "@feathersjs/authentication": "^5.0.19",
63
+ "@feathersjs/authentication-client": "^5.0.19",
64
+ "@feathersjs/authentication-local": "^5.0.19",
65
+ "@feathersjs/authentication-oauth": "^5.0.19",
66
+ "@feathersjs/configuration": "^5.0.19",
67
+ "@feathersjs/errors": "^5.0.19",
68
+ "@feathersjs/express": "^5.0.19",
69
+ "@feathersjs/feathers": "^5.0.19",
70
+ "@feathersjs/knex": "^5.0.19",
71
+ "@feathersjs/koa": "^5.0.19",
72
+ "@feathersjs/mongodb": "^5.0.19",
73
+ "@feathersjs/rest-client": "^5.0.19",
74
+ "@feathersjs/schema": "^5.0.19",
75
+ "@feathersjs/socketio": "^5.0.19",
76
+ "@feathersjs/transport-commons": "^5.0.19",
77
+ "@feathersjs/typebox": "^5.0.19",
78
78
  "@types/mocha": "^10.0.6",
79
79
  "@types/node": "^20.11.5",
80
80
  "@types/prettier": "^2.7.3",
@@ -85,5 +85,5 @@
85
85
  "type-fest": "^4.9.0",
86
86
  "typescript": "^5.3.3"
87
87
  },
88
- "gitHead": "33a2e000e762db37ede9b1282edb754e03cd4c30"
88
+ "gitHead": "a49c2c2d2ba76b338268b3d155836b518364eec4"
89
89
  }
File without changes