Skip to content

Commit

Permalink
chore(release): 2.0.0 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi authored Nov 5, 2019
1 parent af9c559 commit bb8c9a4
Show file tree
Hide file tree
Showing 13 changed files with 4,836 additions and 3,402 deletions.
39 changes: 39 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
"use strict";

module.exports = {
extends: [
"plugin:itgalaxy/script",
"plugin:itgalaxy/esnext",
"plugin:itgalaxy/node"
],
overrides: [
// Tests
{
extends: ["plugin:itgalaxy/jest"],
excludedFiles: ["**/*.md"],
files: ["**/__tests__/**/*", "**/__mocks__/**/*"],
rules: {
// Allow to use `console` (example - `mocking`)
"no-console": "off"
}
},

// Markdown
{
extends: [
// Documentation files can contain ECMA and CommonJS modules
"plugin:itgalaxy/dirty",
"plugin:itgalaxy/markdown"
],
files: ["**/*.md"],
rules: {
"no-unused-vars": "off",
"no-console": "off",
"import/no-unresolved": "off",
"node/no-unpublished-require": "off",
"node/no-unpublished-import": "off"
}
}
],
root: true
};
5 changes: 5 additions & 0 deletions .remarkrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"use strict";

module.exports = {
plugins: ["remark-preset-lint-itgalaxy"]
};
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ cache:
matrix:
fast_finish: true
include:
- node_js: "11"
- node_js: "10"
script: npm run $JOB_PART
env: JOB_PART=pretest
- node_js: "11"
- node_js: "10"
script: npm run $JOB_PART
env: JOB_PART=test:only
- node_js: "10"
- node_js: "12"
script: npm run $JOB_PART
env: JOB_PART=test:only
- node_js: "8"
- node_js: "13"
script: npm run $JOB_PART
env: JOB_PART=test:only

Expand All @@ -40,6 +40,3 @@ install:
before_script:
- node --version
- npm --version

script:
- npm run ci:$JOB_PART
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org).

## 2.0.0 - 2019-11-05

- Changed: drop support node@8.
- Chore: update deps

## 1.0.1 - 2019-04-24

- Chore: update deps
Expand Down
4 changes: 4 additions & 0 deletions labelify.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ module.exports = {
{
color: "#a1aa1a",
name: "1.0.0"
},
{
color: "#b1bb1b",
name: "2.0.0"
}
]
};
Loading

0 comments on commit bb8c9a4

Please sign in to comment.