Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Merge 1a35a86 into 2b6d786
Browse files Browse the repository at this point in the history
  • Loading branch information
hcodes committed Apr 4, 2020
2 parents 2b6d786 + 1a35a86 commit f9da288
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [10.x, 12.x, 13.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: [ubuntu-latest]
strategy:
matrix:
node-version: [12.x]
node-version: [13.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## v7.0.0
- Drop support for Node.js < 10.
- Add .yaspellerrc.js and .yaspellerrc.json for project config #153, #150

## v6.1.0
- Fix lost symlink #145, #128.
- Print row:col for repeated words #142, #134.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,6 +1,6 @@
The MIT License (MIT)

© 2018 Denis Seleznev, <hcodes@yandex.ru>
© 2020 Denis Seleznev, <hcodes@yandex.ru>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
Expand Down
30 changes: 20 additions & 10 deletions package-lock.json

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

11 changes: 7 additions & 4 deletions package.json
Expand Up @@ -10,7 +10,7 @@
"yaspeller": "./bin/yaspeller"
},
"description": "Search tool typos in the text, files and websites",
"version": "6.1.0",
"version": "7.0.0",
"license": "MIT",
"homepage": "https://github.com/hcodes/yaspeller",
"repository": {
Expand All @@ -33,7 +33,7 @@
],
"dependencies": {
"async": "^3.2.0",
"chalk": "^3.0.0",
"chalk": "^4.0.0",
"commander": "^3.0.0",
"cosmiconfig": "^6.0.0",
"entities": "^2.0.0",
Expand All @@ -57,7 +57,7 @@
"sinon": "^9.0.1"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"test": "npm run-script eslint && npm run-script unit-test-coverage",
Expand All @@ -70,6 +70,9 @@
"bin",
"lib",
".yaspellerrc.default.json",
"LICENSE.md"
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"README.ru.md"
]
}

0 comments on commit f9da288

Please sign in to comment.