Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Replacing deprecated os-homedir with homedir-polyfill #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion osenv.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var isWindows = process.platform === 'win32'
var path = require('path')
var exec = require('child_process').exec
var osTmpdir = require('os-tmpdir')
var osHomedir = require('os-homedir')
var osHomedir = require('homedir-polyfill')

// looking up envs is a bit costly.
// Also, sometimes we want to have a fallback
Expand Down
Loading