Skip to content

Commit

Permalink
CI updates and require Node.js 6 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon93s authored and sindresorhus committed Dec 31, 2018
1 parent 9d08958 commit 517e226
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 24 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
@@ -1,5 +1,9 @@
os:
- linux
- windows
sudo: false
language: node_js
node_js:
- '10'
- '8'
- '6'
- '4'
20 changes: 0 additions & 20 deletions appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion index.js
@@ -1,7 +1,7 @@
'use strict';
const escapeStringRegexp = require('escape-string-regexp');

const platform = process.platform;
const {platform} = process;

const main = {
tick: '✔',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"url": "sindresorhus.com"
},
"engines": {
"node": ">=4"
"node": ">=6"
},
"scripts": {
"test": "xo && ava",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
@@ -1,4 +1,4 @@
# figures [![Build Status: Linux](https://travis-ci.org/sindresorhus/figures.svg?branch=master)](https://travis-ci.org/sindresorhus/figures) [![Build status: Windows](https://ci.appveyor.com/api/projects/status/mb743hl70269be3r/branch/master?svg=true)](https://ci.appveyor.com/project/sindresorhus/figures/branch/master)
# figures [![Build Status](https://travis-ci.org/sindresorhus/figures.svg?branch=master)](https://travis-ci.org/sindresorhus/figures)

> Unicode symbols with Windows CMD fallbacks
Expand Down

0 comments on commit 517e226

Please sign in to comment.