Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
[dsch] fix for .npmignore: excluding tests and src
  • Loading branch information
DScheglov committed Mar 18, 2021
1 parent e23f43b commit 9e7d92f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

!/lib
!/esm
!/src
!index.js
!index.d.ts

/src/**/__tests__/*.ts
__tests__
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-cast",
"version": "0.0.1",
"version": "0.0.2",
"description": "Runtime typechecking",
"main": "lib/index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -35,10 +35,14 @@
"typescript": "^3.7.5"
},
"eslintConfig": {
"extends": ["airbnb-base"],
"extends": [
"airbnb-base"
],
"overrides": [
{
"files": ["*.ts"]
"files": [
"*.ts"
]
}
],
"plugins": [
Expand Down

0 comments on commit 9e7d92f

Please sign in to comment.