Bump version to 1.11.4

Update Node.js dependencies

Fix build error in install.ts

Add config to generate types

Add bugs, directories, files and types entries in package.json
This commit is contained in:
Shivam Mathur
2021-09-09 03:05:28 +05:30
parent e030852d0e
commit 938988b211
5 changed files with 781 additions and 748 deletions

6
dist/index.js vendored
View File

@ -456,11 +456,11 @@ async function run() {
case 'darwin':
case 'linux':
script_path = await build(os_version + '.sh', version, os_version);
await exec_1.exec('bash ' + script_path + ' ' + version + ' ' + __dirname);
await (0, exec_1.exec)('bash ' + script_path + ' ' + version + ' ' + __dirname);
break;
case 'win32':
script_path = await build('win32.ps1', version, os_version);
await exec_1.exec('pwsh ' + script_path + ' ' + version + ' ' + __dirname);
await (0, exec_1.exec)('pwsh ' + script_path + ' ' + version + ' ' + __dirname);
break;
}
}
@ -469,7 +469,7 @@ async function run() {
}
}
catch (error) {
core.setFailed(error.message);
core.setFailed(error);
}
}
exports.run = run;