create-express-kickstart 1.3.1 → 1.3.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.
- package/bin/cli.js +1 -1
- package/package.json +2 -5
package/bin/cli.js
CHANGED
|
@@ -297,7 +297,6 @@ export const verifyToken = (token) => {
|
|
|
297
297
|
|
|
298
298
|
// Install Dependencies
|
|
299
299
|
const dependenciesToInstall = Object.keys(deps).filter(dep => deps[dep] && dep !== 'prettier' && dep !== 'dotenv');
|
|
300
|
-
if (deps.dotenv) dependenciesToInstall.push('@dotenvx/dotenvx');
|
|
301
300
|
if (deps['pino-http']) {
|
|
302
301
|
dependenciesToInstall.push('pino');
|
|
303
302
|
}
|
|
@@ -306,6 +305,7 @@ export const verifyToken = (token) => {
|
|
|
306
305
|
}
|
|
307
306
|
|
|
308
307
|
const devDependenciesToInstall = ['nodemon'];
|
|
308
|
+
if (deps.dotenv) devDependenciesToInstall.push('@dotenvx/dotenvx');
|
|
309
309
|
if (deps.prettier) devDependenciesToInstall.push('prettier');
|
|
310
310
|
if (installPinoPretty) devDependenciesToInstall.push('pino-pretty');
|
|
311
311
|
if (initTests) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-express-kickstart",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Production-ready CLI starter for Express APIs",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,8 +28,5 @@
|
|
|
28
28
|
"bugs": {
|
|
29
29
|
"url": "https://github.com/aasifashraf/create-express-kickstart/issues"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://github.com/aasifashraf/create-express-kickstart#readme"
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@dotenvx/dotenvx": "^1.52.0"
|
|
34
|
-
}
|
|
31
|
+
"homepage": "https://github.com/aasifashraf/create-express-kickstart#readme"
|
|
35
32
|
}
|