Skip to content

Commit fba7ad2

Browse files
committed
fix: (node4) use older version of debug + use strict to support node 4
1 parent 4d0c6d9 commit fba7ad2

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"sinon": "7.2.5"
8181
},
8282
"dependencies": {
83-
"debug": "4.1.1"
83+
"debug": "3.1.0"
8484
},
8585
"optionalDependencies": {
8686
"@cypress/registry-js": "1.3.3-patch1"

src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
13
const debug = require('debug')('get-windows-proxy')
24
const os = require('os')
35
const registry = require('./registry')

src/registry.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
13
const os = require('os')
24
const debug = require('debug')('get-windows-proxy')
35

0 commit comments

Comments
 (0)