localssl-cli 0.1.7 → 0.1.8
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 +1 -1
- package/src/utils.js +2 -2
package/package.json
CHANGED
package/src/utils.js
CHANGED
|
@@ -4,8 +4,8 @@ const chalk = require('chalk');
|
|
|
4
4
|
|
|
5
5
|
const HOME_DIR = os.homedir();
|
|
6
6
|
const LOCALSSL_HOME = path.join(HOME_DIR, '.localssl');
|
|
7
|
-
const LOCALSSL_CA_PUBLIC = path.join(LOCALSSL_HOME, '
|
|
8
|
-
const LOCALSSL_CA_KEY = path.join(LOCALSSL_HOME, '
|
|
7
|
+
const LOCALSSL_CA_PUBLIC = path.join(LOCALSSL_HOME, 'rootCA.pem');
|
|
8
|
+
const LOCALSSL_CA_KEY = path.join(LOCALSSL_HOME, 'rootCA-key.pem');
|
|
9
9
|
const PROJECT_DIR = process.cwd();
|
|
10
10
|
const PROJECT_LOCALSSL_DIR = path.join(PROJECT_DIR, '.localssl');
|
|
11
11
|
const PROJECT_CERT = path.join(PROJECT_LOCALSSL_DIR, 'cert.pem');
|