We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9828a1a commit a2282f9Copy full SHA for a2282f9
4 files changed
certs.js
@@ -6,7 +6,7 @@ const exec = require("child_process").exec
6
const https = require("https")
7
const getAppDataPath = require("appdata-path")
8
9
-const MKCERT_VERSION = "v1.4.1"
+const MKCERT_VERSION = "v1.4.3"
10
const CERT_PATH = getAppDataPath("https-localhost")
11
12
// check for updates
index.js
@@ -5,7 +5,8 @@ const fs = require("fs")
5
const http = require("http")
// spdy allows http2, while waiting express to support the http2 module
const https = process.env.NODE_ENV === "production"
- ? require("spdy") : require("https")
+ ? require("spdy")
+ : require("https")
const express = require("express")
const cors = require("cors")
const getCerts = require(path.resolve(__dirname, "certs.js")).getCerts
0 commit comments