Skip to content

Commit

Permalink
fix: dirname import
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Mar 9, 2024
1 parent 59ebffb commit e30db9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions lib/install.js
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit e30db9a

Please sign in to comment.