Skip to content

Commit

Permalink
chore: drop support for pre-LTS versions of NodeJS
Browse files Browse the repository at this point in the history
BREAKING CHANGE
  • Loading branch information
nknapp committed Feb 15, 2019
1 parent 41a8eb6 commit 7475438
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .thought/partials/api.md.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## NodeJS compatibility notes

This package will always support the latest version of NodeJS and as well as the current LTS version.
In the future, it will not be considered a breaking change to drop support of a pre-LTS version of NodeJS.


10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ cache:
- node_modules
language: "node_js"
node_js:
- "6"
- "7"
- "node"
- "lts/*"
matrix:
include:
- node_js: "6"
- node_js: "lts/*"
env: STATIC_CHECKS=true
script:
- |
Expand All @@ -17,7 +17,7 @@ script:
eslint --max-warnings 0 .
exit 0
fi
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly
- nyc mocha
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls
- nyc report --reporter=text-lcov | coveralls
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# customize-engine-less

[![NPM version](https://badge.fury.io/js/customize-engine-less.svg)](http://badge.fury.io/js/customize-engine-less)
[![NPM version](https://img.shields.io/npm/v/customize-engine-less.svg)](https://npmjs.com/package/customize-engine-less)
[![Travis Build Status](https://travis-ci.org/bootprint/customize-engine-less.svg?branch=master)](https://travis-ci.org/bootprint/customize-engine-less)
[![Coverage Status](https://img.shields.io/coveralls/bootprint/customize-engine-less.svg)](https://coveralls.io/r/bootprint/customize-engine-less)
[![Greenkeeper badge](https://badges.greenkeeper.io/bootprint/customize-engine-less.svg)](https://greenkeeper.io/)

> A less-engine for customize
Expand Down Expand Up @@ -44,11 +43,19 @@ customize()
This will generate the following output

```
{ less:
{ 'main.css': 'div{color:red;background-color:green}/*# sourceMappingURL=main.css.map */',
'main.css.map': '{"version":3,"sources":["/home/nknappmeier/projects/bootprint/customize-engine-less/examples/main.less"],"names":[],"mappings":"AAGA,IACE,SAAA,CACA","sourcesContent":["@textcolor: blue;\\n@bgcolor: green;\\n\\ndiv {\\n color: @textcolor;\\n background-color: @bgcolor; \\n}\\n\\n\\n\\n"]}' } }
{ less:
{ 'main.css':
'div{color:red;background-color:green}/*# sourceMappingURL=main.css.map */',
'main.css.map':
'{"version":3,"sources":["/home/nknappmeier/projects/bootprint/customize-engine-less/examples/main.less"],"names":[],"mappings":"AAGA,IACE,SAAA,CACA","sourcesContent":["@textcolor: blue;\\n@bgcolor: green;\\n\\ndiv {\\n color: @textcolor;\\n background-color: @bgcolor; \\n}\\n\\n\\n\\n"]}' } }
```

## NodeJS compatibility notes

This package will always support the latest version of NodeJS and as well as the current LTS version.
In the future, it will not be considered a breaking change to drop support of a pre-LTS version of NodeJS.




# License
Expand Down

0 comments on commit 7475438

Please sign in to comment.