Skip to content

Commit 89102f2

Browse files
fix: Update require statement from @cypress/registry-js to `reg…… (#3)
Co-authored-by: Jennifer Shehane <[email protected]>
1 parent 398c112 commit 89102f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/registry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ let registry
77

88
try {
99
// @ts-ignore
10-
registry = require('@cypress/registry-js')
10+
registry = require('registry-js')
1111
} catch (err) {
1212
if (os.platform() === 'win32') {
1313
debug(
1414
'Could not load native extension for Windows registry access. The most likely reason is that your Node version has changed since installing. Try re-installing get-windows-proxy.'
1515
)
1616
} else {
1717
debug(
18-
'Skipping loading @cypress/registry-js because your platform is not win32.'
18+
'Skipping loading registry-js because your platform is not win32.'
1919
)
2020

2121
registry = {

0 commit comments

Comments
 (0)