create-feathers 5.0.2 → 5.0.4

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 (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +23 -0
  3. package/package.json +3 -3
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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))
11
+
12
+ ## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)
13
+
14
+ **Note:** Version bump only for package create-feathers
15
+
6
16
  ## [5.0.2](https://github.com/feathersjs/feathers/compare/v5.0.1...v5.0.2) (2023-03-23)
7
17
 
8
18
  **Note:** Version bump only for package create-feathers
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # create-feathers
2
+
3
+ [![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
4
+ [![Download Status](https://img.shields.io/npm/dm/@feathersjs/configuration.svg?style=flat-square)](https://www.npmjs.com/package/create-feathers)
5
+ [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.gg/qa8kez8QBx)
6
+
7
+ > Generate a Feathers application through the CLI
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ npm create feathers my-app
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ Refer to the [Feathers guides](https://feathersjs.com/guides/) for more details.
18
+
19
+ ## License
20
+
21
+ Copyright (c) 2023 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
22
+
23
+ Licensed under the [MIT license](LICENSE).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-feathers",
3
3
  "description": "Create a new Feathers application",
4
- "version": "5.0.2",
4
+ "version": "5.0.4",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "bin": {
7
7
  "create-feathers": "./bin/create-feathers"
@@ -47,7 +47,7 @@
47
47
  "access": "public"
48
48
  },
49
49
  "dependencies": {
50
- "@feathersjs/cli": "^5.0.2"
50
+ "@feathersjs/cli": "^5.0.4"
51
51
  },
52
- "gitHead": "9b5239bf12f52f7e6b80405b465dcb1e1c65b623"
52
+ "gitHead": "376e89040991db500f1f327aa699322543315039"
53
53
  }