@cypress/registry-js
Advanced tools
Comparing version 1.3.2-patch2 to 1.3.2-patch3
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const requirePath = process.versions.electron | ||
? '../../build-electron/Release/registry.node' | ||
: '../../build-node/Release/registry.node'; | ||
const nativeModule = process.platform === "win32" | ||
? require(requirePath) | ||
: null; | ||
? "../../build-electron/Release/registry.node" | ||
: process.versions.node === "8.2.1" | ||
? "../../build-node/Release/registry.node" | ||
: "../build/Release/registry.node"; | ||
const nativeModule = process.platform === "win32" ? require(requirePath) : null; | ||
/** | ||
@@ -10,0 +10,0 @@ * Utility function used to achieve exhaustive type checks at compile time. |
{ | ||
"name": "@cypress/registry-js", | ||
"version": "1.3.2-patch2", | ||
"version": "1.3.2-patch3", | ||
"description": "A simple and opinionated library for working with the Windows registry", | ||
@@ -14,2 +14,3 @@ "main": "dist/lib/index.js", | ||
"test": "jest -c jest.json", | ||
"prepublish": "yarn build", | ||
"postpublish": "git push --follow-tags", | ||
@@ -16,0 +17,0 @@ "benchmark": "ts-node benchmarks/reg.ts", |
Sorry, the diff of this file is not supported yet
250946