Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajafff committed Sep 6, 2018
1 parent 80c761c commit acd5b78
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## v0.14.0

**Features:**

* Added support for [Project References](https://www.typescriptlang.org/docs/handbook/project-references.html) added in TypeScript 3.0.0
* Correctly process `tsconfig.json` containing `references`
* Log no warning on empty `files` array if there are `references`
* Added `-r` or `--references` CLI option to recursively lint all `references`. This works similar to `tsc --build` but doesn't build a dependency graph. Instead it processes the projects depth-first in their specified order.
* Allow linting multiple projects in one run by specifiying `-p` or `--project` multiple times
* If a file was not found, report the projects it was searched in

**Bugfixes:**

* `typecheck`: correctly report declaration errors with `"composite": true`

## v0.13.0

:warning: **Breaking Changes:**
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.14.0",
"version": "0.15.0",
"private": true,
"scripts": {
"clean": "rimraf \"{packages/*/{index,src/**/*,test/*.spec},scripts/!(last-travis-nightly)}.{js?(.map),d.ts}\"",
Expand All @@ -25,8 +25,8 @@
],
"dependencies": {
"@fimbul/disir": "^0.13.0",
"@fimbul/valtyr": "^0.13.0",
"@fimbul/wotan": "^0.13.0",
"@fimbul/valtyr": "^0.14.0",
"@fimbul/wotan": "^0.14.0",
"@octokit/rest": "^15.9.4",
"@types/cross-spawn": "^6.0.0",
"@types/github-url-to-object": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/heimdall/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fimbul/heimdall",
"version": "0.13.0",
"version": "0.14.0",
"description": "Wotan plugin to load and use TSLint rules and formatters",
"main": "src/index",
"types": "src/index",
Expand All @@ -26,7 +26,7 @@
"formatters"
],
"peerDependencies": {
"@fimbul/wotan": "^0.13.0"
"@fimbul/wotan": "^0.14.0"
},
"dependencies": {
"@fimbul/bifrost": "^0.13.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/mimir/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fimbul/mimir",
"version": "0.13.0",
"version": "0.14.0",
"description": "Core rules of the Fimbullinter project",
"main": "recommended.yaml",
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/valtyr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fimbul/valtyr",
"version": "0.13.0",
"version": "0.14.0",
"description": "Wotan plugin to behave almost like TSLint",
"author": "Klaus Meinhardt",
"license": "Apache-2.0",
Expand Down Expand Up @@ -30,7 +30,7 @@
"resolve": "^1.5.0"
},
"peerDependencies": {
"@fimbul/wotan": "^0.13.0",
"@fimbul/wotan": "^0.14.0",
"typescript": ">= 2.8.1 || >= 3.0.0-dev || >= 3.0.0-insiders || 3.0.0-rc || >= 3.1.0-dev"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/wotan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fimbul/wotan",
"version": "0.13.0",
"version": "0.14.0",
"description": "Pluggable TypeScript and JavaScript linter",
"bin": "bin/main.js",
"publishConfig": {
Expand Down Expand Up @@ -46,7 +46,7 @@
"rimraf": "^2.6.2"
},
"dependencies": {
"@fimbul/mimir": "^0.13.0",
"@fimbul/mimir": "^0.14.0",
"@fimbul/ymir": "^0.13.0",
"bind-decorator": "^1.0.11",
"chalk": "^2.3.0",
Expand Down

0 comments on commit acd5b78

Please sign in to comment.