diff --git a/CHANGELOG.md b/CHANGELOG.md index 049505a..993bdef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.85.0] + ## Changed - Handle error when trying to create symlink on Windows as non-Administrator [aca09ab](https://github.com/nwjs/npm-installer/commit/aca09abbd315fc87c6c4f813748aa4a5898bbda7) diff --git a/lib/install.js b/lib/install.js index 023e22f..5f74593 100755 --- a/lib/install.js +++ b/lib/install.js @@ -1,8 +1,8 @@ import { createWriteStream, existsSync } from 'node:fs'; import { rename, rm, symlink } from 'node:fs/promises'; import { get } from 'node:https'; -import { resolve } from 'node:path'; -import { arch, dirname, env, platform, exit } from 'node:process'; +import { dirname, resolve } from 'node:path'; +import { arch, env, platform, exit } from 'node:process'; import { URL, fileURLToPath } from 'node:url'; import compressing from 'compressing';