wp-blank-scripts 2.6.7 → 2.6.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/lib/deployProject.js +0 -2
- package/package.json +1 -1
package/lib/deployProject.js
CHANGED
|
@@ -23,7 +23,6 @@ const defaultOptions = {
|
|
|
23
23
|
tunnelHost: '127.0.0.1',
|
|
24
24
|
tunnelPort: 3307,
|
|
25
25
|
mySQLPort: 3306,
|
|
26
|
-
mySQLSocket: '/var/lib/mysql/mysql.sock',
|
|
27
26
|
};
|
|
28
27
|
|
|
29
28
|
let m;
|
|
@@ -195,7 +194,6 @@ async function connectMySQL() {
|
|
|
195
194
|
m = mysql.createConnection({
|
|
196
195
|
host: tunnelHost,
|
|
197
196
|
port: tunnelPort,
|
|
198
|
-
socketPath: isCI() ? options.mySQLSocket : '/Applications/MAMP/tmp/mysql/mysql.sock',
|
|
199
197
|
user,
|
|
200
198
|
password,
|
|
201
199
|
database,
|