node-version-install 1.4.9 → 1.4.11
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.
- package/dist/cjs/index.d.cts +2 -2
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/workers/install.d.cts +1 -1
- package/dist/cjs/workers/install.d.ts +1 -1
- package/dist/cjs/workers/installSync.d.cts +1 -1
- package/dist/cjs/workers/installSync.d.ts +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/workers/install.d.ts +1 -1
- package/dist/esm/workers/installSync.d.ts +1 -1
- package/package.json +6 -6
package/dist/cjs/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { InstallCallback, InstallOptions, InstallResult } from './types.
|
|
2
|
-
export type * from './types.
|
|
1
|
+
import type { InstallCallback, InstallOptions, InstallResult } from './types.js';
|
|
2
|
+
export type * from './types.js';
|
|
3
3
|
export default function install(versionExpression: string, options?: InstallOptions, callback?: InstallCallback): undefined | Promise<InstallResult[]>;
|
|
4
4
|
export declare function sync(versionExpression: string, options?: InstallOptions): InstallResult[];
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { InstallCallback, InstallOptions, InstallResult } from './types.
|
|
2
|
-
export type * from './types.
|
|
1
|
+
import type { InstallCallback, InstallOptions, InstallResult } from './types.js';
|
|
2
|
+
export type * from './types.js';
|
|
3
3
|
export default function install(versionExpression: string, options?: InstallOptions, callback?: InstallCallback): undefined | Promise<InstallResult[]>;
|
|
4
4
|
export declare function sync(versionExpression: string, options?: InstallOptions): InstallResult[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { InstallCallback, InstallOptions } from '../types.
|
|
1
|
+
import type { InstallCallback, InstallOptions } from '../types.js';
|
|
2
2
|
export default function installWorker(versionExpression: string, options: InstallOptions, callback: InstallCallback): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { InstallCallback, InstallOptions } from '../types.
|
|
1
|
+
import type { InstallCallback, InstallOptions } from '../types.js';
|
|
2
2
|
export default function installWorker(versionExpression: string, options: InstallOptions, callback: InstallCallback): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { InstallOptions, InstallResult } from '../types.
|
|
1
|
+
import type { InstallOptions, InstallResult } from '../types.js';
|
|
2
2
|
export default function installSyncWorker(versionExpression: string, options: InstallOptions): InstallResult[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { InstallOptions, InstallResult } from '../types.
|
|
1
|
+
import type { InstallOptions, InstallResult } from '../types.js';
|
|
2
2
|
export default function installSyncWorker(versionExpression: string, options: InstallOptions): InstallResult[];
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { InstallCallback, InstallOptions, InstallResult } from './types.
|
|
2
|
-
export type * from './types.
|
|
1
|
+
import type { InstallCallback, InstallOptions, InstallResult } from './types.js';
|
|
2
|
+
export type * from './types.js';
|
|
3
3
|
export default function install(versionExpression: string, options?: InstallOptions, callback?: InstallCallback): undefined | Promise<InstallResult[]>;
|
|
4
4
|
export declare function sync(versionExpression: string, options?: InstallOptions): InstallResult[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { InstallCallback, InstallOptions } from '../types.
|
|
1
|
+
import type { InstallCallback, InstallOptions } from '../types.js';
|
|
2
2
|
export default function installWorker(versionExpression: string, options: InstallOptions, callback: InstallCallback): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { InstallOptions, InstallResult } from '../types.
|
|
1
|
+
import type { InstallOptions, InstallResult } from '../types.js';
|
|
2
2
|
export default function installSyncWorker(versionExpression: string, options: InstallOptions): InstallResult[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-version-install",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.11",
|
|
4
4
|
"description": "Install NodeJs by version string asynchronously or synchronously",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"version": "tsds version"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"function-exec-sync": "
|
|
48
|
-
"homedir-polyfill": "
|
|
49
|
-
"node-install-release": "
|
|
50
|
-
"node-resolve-versions": "
|
|
51
|
-
"queue-cb": "
|
|
47
|
+
"function-exec-sync": "*",
|
|
48
|
+
"homedir-polyfill": "*",
|
|
49
|
+
"node-install-release": "*",
|
|
50
|
+
"node-resolve-versions": "*",
|
|
51
|
+
"queue-cb": "*"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/mocha": "*",
|