Skip to content

Commit

Permalink
πŸ’š Update CI node versions
Browse files Browse the repository at this point in the history
`esm` package required for AVA to run in Node 10+.
  • Loading branch information
stormwarning committed Mar 16, 2020
1 parent e8c706b commit 8ad3f0d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ services:
- docker

node_js:
- 12
- 10
- 8

# Trigger a push build on master and greenkeeper branches + PRs build on every branches
# Avoid double build on PRs (See https://github.com/travis-ci/travis-ci/issues/1147)
Expand Down
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 36 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,7 @@
{
"name": "stylelint-config-recess-order",
"description": "Recess-based property sort order for Stylelint.",
"license": "ISC",
"author": "Jeff Nelson <[email protected]> (http://tidaltheory.co/)",
"homepage": "https://github.com/stormwarning/stylelint-config-recess-order",
"repository": "stormwarning/stylelint-config-recess-order",
"bugs": "https://github.com/stormwarning/stylelint-config-recess-order/issues",
"version": "2.0.3",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"semantic-release": "semantic-release",
"test": "ava"
},
"dependencies": {
"stylelint-order": "4.0.x"
},
"peerDependencies": {
"stylelint": ">=9"
},
"devDependencies": {
"@zazen/eslint-config": "2.0.x",
"@zazen/semantic-release": "0.1.2",
"ava": "3.5.x",
"eslint": "6.8.x",
"husky": "4.2.x",
"lint-staged": "10.0.x",
"prettier": "1.19.x",
"prettier-plugin-packagejson": "2.0.x",
"semantic-release": "17.0.x",
"stylelint": "13.2.x"
},
"description": "Recess-based property sort order for Stylelint.",
"keywords": [
"bootstrap",
"properties-order",
Expand All @@ -40,6 +11,17 @@
"stylelint-config",
"stylelint-order"
],
"homepage": "https://github.com/stormwarning/stylelint-config-recess-order",
"bugs": "https://github.com/stormwarning/stylelint-config-recess-order/issues",
"repository": "stormwarning/stylelint-config-recess-order",
"license": "ISC",
"author": "Jeff Nelson <[email protected]> (http://tidaltheory.co/)",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"semantic-release": "semantic-release",
"test": "ava"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
Expand All @@ -55,6 +37,30 @@
"git add"
]
},
"ava": {
"require": [
"esm"
]
},
"dependencies": {
"stylelint-order": "4.0.x"
},
"devDependencies": {
"@zazen/eslint-config": "2.0.x",
"@zazen/semantic-release": "0.1.2",
"ava": "3.5.x",
"eslint": "6.8.x",
"esm": "3.2.25",
"husky": "4.2.x",
"lint-staged": "10.0.x",
"prettier": "1.19.x",
"prettier-plugin-packagejson": "2.0.x",
"semantic-release": "17.0.x",
"stylelint": "13.2.x"
},
"peerDependencies": {
"stylelint": ">=9"
},
"release": {
"extends": "@zazen/semantic-release"
}
Expand Down

0 comments on commit 8ad3f0d

Please sign in to comment.