Skip to content

Commit

Permalink
Merge pull request #171 from poppinlp/bump-node
Browse files Browse the repository at this point in the history
Bump node version
  • Loading branch information
raszi committed May 22, 2018
2 parents 6c3db68 + 8f5d0b4 commit 310c60f
Show file tree
Hide file tree
Showing 5 changed files with 323 additions and 524 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
language: node_js
node_js:
- "node"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
sudo: false
cache:
directories:
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"
- nodejs_version: "7"
- nodejs_version: "8"
- nodejs_version: "9"
- nodejs_version: "10"

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
3 changes: 1 addition & 2 deletions lib/tmp.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const fs = require('fs');
const os = require('os');
const path = require('path');
const crypto = require('crypto');
const osTmpDir = require('os-tmpdir');
const _c = fs.constants && os.constants ?
{ fs: fs.constants, os: os.constants } :
process.binding('constants');
Expand All @@ -26,7 +25,7 @@ const
* The temporary directory.
* @type {string}
*/
tmpDir = osTmpDir(),
tmpDir = os.tmpdir(),

// the random characters to choose from
RANDOM_CHARS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz',
Expand Down
Loading

0 comments on commit 310c60f

Please sign in to comment.