Skip to content

Commit

Permalink
Updated dependencies. Fixed some ESLint errors. Removing support for …
Browse files Browse the repository at this point in the history
…Node v10.x.x. Restructured the .eslintrc config.
  • Loading branch information
lsphillips committed May 8, 2021
1 parent a62048e commit 37dbbe6
Show file tree
Hide file tree
Showing 9 changed files with 6,824 additions and 1,652 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ max_line_length = 120
indent_style = space
indent_size = 2

[*.yml]
[*.{yml,yaml}]
indent_style = space
indent_size = 2

[package.json]
indent_style = space
indent_size = 4
indent_size = 4
4 changes: 3 additions & 1 deletion src/.eslintrc → .eslintrc
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@
"parserOptions" :
{
"sourceType" : "script"
}
},

"root" : true
}
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "10"
- "11"
- "12"
- "13"
- "14"
- "15"
- "16"
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] (2020-05-08)

### Fixed

- The TypeScript definition for the `CancellationToken#register()` method now accepts the correct callback type.

### Changed

- Support for Node.js version `10.x.x` has been dropped.

## [1.0.1] (2020-02-02)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Luke Phillips
Copyright (c) 2020 - 2021 Luke Phillips

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading

0 comments on commit 37dbbe6

Please sign in to comment.