-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [2.0.0](v1.0.0...v2.0.0) (2020-09-01) ### Breaking * Renamed Throwable to ThrowableType to better reflect its purpose. ([3389b54](3389b54)) ### Build * Ensured TypeScript is actually transpiled during the publish job. ([6e8ccbb](6e8ccbb)) ### Docs * Fixed NPM badge in README. ([e3bfa1d](e3bfa1d))
- Loading branch information
1 parent
3389b54
commit 985f388
Showing
2 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@rogwilco/try", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"author": "Nick Williams <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"description": "A lightweight module that enables scoped catch blocks.", | ||
|
@@ -25,7 +25,9 @@ | |
"access": "public" | ||
}, | ||
"main": "dist/index.js", | ||
"files": ["dist"], | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "tsc --project tsconfig-build.json", | ||
"dist": "tsc --project tsconfig-dist.json", | ||
|