node-version-utils 1.3.0 → 1.3.2

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.
@@ -1,5 +1,4 @@
1
- import type cp from 'child_process';
2
- export type SpawnOptions = cp.SpawnOptions;
1
+ export type { SpawnOptions } from 'cross-spawn-cb';
3
2
  export interface ProcessEnv extends NodeJS.ProcessEnv {
4
3
  npm_config_prefix: string;
5
4
  npm_node_execpath: string;
@@ -1,5 +1,4 @@
1
- import type cp from 'child_process';
2
- export type SpawnOptions = cp.SpawnOptions;
1
+ export type { SpawnOptions } from 'cross-spawn-cb';
3
2
  export interface ProcessEnv extends NodeJS.ProcessEnv {
4
3
  npm_config_prefix: string;
5
4
  npm_node_execpath: string;
@@ -1,5 +1,4 @@
1
- import type cp from 'child_process';
2
- export type SpawnOptions = cp.SpawnOptions;
1
+ export type { SpawnOptions } from 'cross-spawn-cb';
3
2
  export interface ProcessEnv extends NodeJS.ProcessEnv {
4
3
  npm_config_prefix: string;
5
4
  npm_node_execpath: string;
@@ -1 +1 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/node-version/node-version-utils/src/types.ts"],"sourcesContent":["import type cp from 'child_process';\n\nexport type SpawnOptions = cp.SpawnOptions;\nexport interface ProcessEnv extends NodeJS.ProcessEnv {\n npm_config_prefix: string;\n npm_node_execpath: string;\n NODE: string;\n NODE_EXE?: string;\n}\n"],"names":[],"mappings":"AAGA,WAKC"}
1
+ {"version":3,"sources":["/Users/kevin/Dev/OpenSource/node-version/node-version-utils/src/types.ts"],"sourcesContent":["export type { SpawnOptions } from 'cross-spawn-cb';\n\nexport interface ProcessEnv extends NodeJS.ProcessEnv {\n npm_config_prefix: string;\n npm_node_execpath: string;\n NODE: string;\n NODE_EXE?: string;\n}\n"],"names":[],"mappings":"AAEA,WAKC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-version-utils",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Utilities for running commands on a specific version of node by installed path",
5
5
  "keywords": [
6
6
  "node",
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "env-path-key": "^1.0.20",
44
- "path-string-prepend": "^1.0.24"
44
+ "path-string-prepend": "^1.0.25"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/mocha": "*",