Skip to content

Commit

Permalink
feat(plugin): support Stylelint 10.0.0
Browse files Browse the repository at this point in the history
 - bump Stylelint peer dependency to ^10.0.0
 - drop support of Node 6 and 7 (same requirement in Stylelint)
 - use eslint-config-stylelint (same config in Stylelint)
 - remove transpilation with Babel
 - remove dependencies which were reported as vulnerable by npm
 - update the rest of dependencies to latest versions
 - whitelist '/src' for npm publishing (previously in .npmignore)

BREAKING CHANGES:

 - Requires Stylelint ^10.0.0
 - Requires Node >= 8.15.1
  • Loading branch information
olegskl committed Apr 15, 2019
1 parent 029a2fd commit 1d8127a
Show file tree
Hide file tree
Showing 16 changed files with 4,787 additions and 4,728 deletions.
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

12 changes: 12 additions & 0 deletions .editorconfig
@@ -0,0 +1,12 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
6 changes: 0 additions & 6 deletions .eslintrc

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
@@ -1,6 +1,3 @@
# Compiled files
dist

# Dependencies
node_modules

Expand Down
2 changes: 0 additions & 2 deletions .npmignore

This file was deleted.

5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,8 +1,7 @@
sudo: false
language: node_js
node_js:
- 11
- 10
- 9
- 8
- 7
- 6
- 8.15.1

0 comments on commit 1d8127a

Please sign in to comment.