Browse Source

Merge branch 'master' into add/env-flags

master
Guillermo Rauch 9 years ago
parent
commit
8bf096b41c
  1. 5
      HISTORY.md
  2. 3
      lib/utils/to-human-path.js
  3. 2
      package.json

5
HISTORY.md

@ -1,4 +1,9 @@
0.21.1 / 2016-08-17
===================
* fix for windows [@rauchg]
0.21.0 / 2016-08-16
==================

3
lib/utils/to-human-path.js

@ -1,7 +1,8 @@
import { resolve } from 'path';
import { homedir } from 'os';
// cleaned-up `$HOME` (i.e.: no trailing slash)
const HOME = resolve(process.env.HOME);
const HOME = resolve(homedir());
/**
* Attempts to show the given path in

2
package.json

@ -1,6 +1,6 @@
{
"name": "now",
"version": "0.21.0",
"version": "0.21.1",
"description": "realtime instant node.js deployment with one command",
"readme": "",
"main": "./build/lib/index",

Loading…
Cancel
Save