@metaadri/secureauth 1.0.0 → 1.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.
- package/package.json +2 -2
- package/src/index.js +1 -0
package/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.1.0",
|
|
7
7
|
"description": "SecureAuth CLI - Add enterprise authentication to any Express app in one command",
|
|
8
8
|
"bin": {
|
|
9
|
-
"secureauth": "
|
|
9
|
+
"secureauth": "bin/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"secureauth",
|
package/src/index.js
CHANGED
|
@@ -98,6 +98,7 @@ async function init() {
|
|
|
98
98
|
answers.database = await askDatabase();
|
|
99
99
|
answers.port = await askPort(3000);
|
|
100
100
|
answers.jwtSecret = await askJwtSecret();
|
|
101
|
+
logger.info(logger.dim('Not sure which features to pick? Visit https://secureauth106293.netlify.app/ for guidance.'));
|
|
101
102
|
answers.features = await askFeatures();
|
|
102
103
|
|
|
103
104
|
logger.info('');
|