Skip to content

Commit

Permalink
2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Nixinova committed Sep 3, 2022
1 parent c89a149 commit f5d59a8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
2 changes: 2 additions & 0 deletions build/download-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ async function writeFile(filename: string) {

async function downloadFiles() {
const files = ['languages.yml', 'vendor.yml', 'documentation.yml', 'heuristics.yml', 'generated.rb'];
if (!fs.existsSync('ext'))
fs.mkdirSync('ext');
files.forEach(file => writeFile(file));
}

Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Next
# 2.5.3
*2022-09-03*
- Fixed a crash occurring when parsing heuristics for `.txt` files ([#16](https://github.com/Nixinova/LinguistJS/issues/16)).

## 2.5.2
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linguist-js",
"version": "2.5.2",
"version": "2.5.3",
"description": "Analyse languages used in a folder. Powered by GitHub Linguist, although it doesn't need to be installed.",
"main": "dist/index.js",
"bin": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"homepage": "https://github.com/Nixinova/Linguist#readme",
"dependencies": {
"binary-extensions": "^2.2.0",
"commander": "^9.3.0",
"commander": "^9.4.0",
"common-path-prefix": "^3.0.0",
"cross-fetch": "^3.1.5",
"ignore": "^5.2.0",
Expand All @@ -50,8 +50,8 @@
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "ts4.7",
"@types/node": "ts4.8",
"deep-object-diff": "^1.1.7",
"typescript": "~4.7.4"
"typescript": "~4.8.2"
}
}

0 comments on commit f5d59a8

Please sign in to comment.