Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dist: Drop support for node v7 and add support for node v10 #7

Open
wants to merge 8 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
5 changes: 4 additions & 1 deletion .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
"require": [
"babel-register"
],
"exclude": [
"**/index.js"
],
"include": [
"src"
],
],
"sourceMap": false,
"instrument": false
}
13 changes: 4 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,35 +19,30 @@ git:
jobs:
include:
- stage: prepare cache
node_js: '9'
node_js: '10'
before_script:
- npm i -g flow-typed
- npm i --no-save pop-api
- flow-typed install
script:
- npm run lint
- npm run flow
- stage: test
node_js: '7'
before_script:
- npm i --no-save pop-api
script: npm run test
- stage: test
node_js: '8'
before_script:
- npm i --no-save pop-api
script: npm run test
after_success: npm run coveralls
- stage: test
node_js: '9'
node_js: '10'
before_script:
- npm i --no-save pop-api
script: npm run test
- stage: build
node_js: '9'
node_js: '10'
script: npm run build
- stage: docs
node_js: '9'
node_js: '10'
script: npm run docs

notifications:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 - pop-api-scraper - Released under the
Copyright (c) 2018 - pop-api-scraper - Released under the
[MIT license](LICENSE.txt).

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
# pop-api-scraper

[![Build Status](https://travis-ci.org/popcorn-official/pop-api-scraper.svg?branch=master)](https://travis-ci.org/popcorn-official/pop-api-scraper)
[![Windows Build](https://img.shields.io/appveyor/ci/ChrisAlderson/pop-api-scraper/master.svg?label=windows)](https://ci.appveyor.com/project/ChrisAlderson/pop-api-scraper)
[![Coverage Status](https://coveralls.io/repos/github/popcorn-official/pop-api-scraper/badge.svg?branch=master)](https://coveralls.io/github/popcorn-official/pop-api-scraper?branch=master)
[![Dependency Status](https://david-dm.org/popcorn-official/pop-api-scraper.svg)](https://david-dm.org/popcorn-official/pop-api-scraper)
[![devDependencies Status](https://david-dm.org/popcorn-official/pop-api-scraper/dev-status.svg)](https://david-dm.org/popcorn-official/pop-api-scraper?type=dev)

[![Build Status][travis-image]][travis-url]
[![Coverage Status][coveralls-image]][coveralls-url]
[![Dependency Status][david-image]][david-url]
[![devDependency Status][david-dev-image]][david-dev-url]
[![Conventional Commits][commits-image]][commits-url]

[travis-image]: https://travis-ci.org/popcorn-official/pop-api-scraper.svg?branch=master
[travis-url]: https://travis-ci.org/popcorn-official/pop-api-scraper
[coveralls-image]: https://coveralls.io/repos/github/popcorn-official/pop-api-scraper/badge.svg?branch=master
[coveralls-url]: https://coveralls.io/github/popcorn-official/pop-api-scraper?branch=master
[david-image]: https://david-dm.org/popcorn-official/pop-api-scraper.svg
[david-url]: https://david-dm.org/popcorn-official/pop-api-scraper
[david-dev-image]: https://david-dm.org/popcorn-official/pop-api-scraper/dev-status.svg
[david-dev-url]: https://david-dm.org/popcorn-official/pop-api-scraper?type=dev
[commits-image]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-green.svg
[commits-url]: https://conventionalcommits.org
## Features

The pop-api-scraper project aims to provide the core modules for the
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ version: "{build}"

environment:
matrix:
- nodejs_version: 7
- nodejs_version: 8
- nodejs_version: 9
- nodejs_version: 10

matrix:
fast_finish: true
Expand Down
Loading