node-version-utils 1.3.7 → 1.3.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.
@@ -0,0 +1,2 @@
1
+ export { default as spawnOptions } from './spawnOptions.js';
2
+ export type * from './types.js';
@@ -0,0 +1,2 @@
1
+ export type Compare = (key: string) => boolean;
2
+ export default function startsCaseInsensitiveFn(string: string): Compare;
@@ -0,0 +1,2 @@
1
+ import type { SpawnOptions } from './types.js';
2
+ export default function spawnOptions(installPath: string, options?: SpawnOptions): SpawnOptions;
@@ -0,0 +1,7 @@
1
+ export type { SpawnOptions } from 'cross-spawn-cb';
2
+ export interface ProcessEnv extends NodeJS.ProcessEnv {
3
+ npm_config_prefix: string;
4
+ npm_node_execpath: string;
5
+ NODE: string;
6
+ NODE_EXE?: string;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-version-utils",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Utilities for running commands on a specific version of node by installed path",
5
5
  "keywords": [
6
6
  "node",