create-feathers 5.0.0-pre.36 → 5.0.0-pre.38
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 +10 -0
- package/bin/create-feathers +1 -1
- 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.0-pre.38](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.37...v5.0.0-pre.38) (2023-02-17)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **generators:** Final tweaks to the generators ([#3060](https://github.com/feathersjs/feathers/issues/3060)) ([1bf1544](https://github.com/feathersjs/feathers/commit/1bf1544fa8deeaa44ba354fb539dc3f1fd187767))
|
|
11
|
+
|
|
12
|
+
# [5.0.0-pre.37](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.36...v5.0.0-pre.37) (2023-02-09)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package create-feathers
|
|
15
|
+
|
|
6
16
|
# [5.0.0-pre.36](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.35...v5.0.0-pre.36) (2023-01-29)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package create-feathers
|
package/bin/create-feathers
CHANGED
|
@@ -39,7 +39,7 @@ ${chalk.grey('npm init feathers myapp')}
|
|
|
39
39
|
${chalk.green('Hooray')}! Your Feathers app is ready to go! 🚀
|
|
40
40
|
Go to the ${chalk.grey(name)} folder to get started.
|
|
41
41
|
|
|
42
|
-
To learn more visit ${chalk.grey('https://
|
|
42
|
+
To learn more visit ${chalk.grey('https://feathersjs.com/guides')}
|
|
43
43
|
`)
|
|
44
44
|
} catch (error) {
|
|
45
45
|
console.error(`${chalk.red('Error')}: ${error.message}`)
|
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.0-pre.
|
|
4
|
+
"version": "5.0.0-pre.38",
|
|
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.0-pre.
|
|
50
|
+
"@feathersjs/cli": "^5.0.0-pre.38"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "7fc86307438ae8cf3f71ce3b677be8bcc55768c1"
|
|
53
53
|
}
|