Skip to content

Commit

Permalink
v2.0.1 skip lib check tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
liplylie committed Jan 30, 2022
1 parent a6330a3 commit df83fcd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,7 @@ deleteAllAlarms = async () => {
} catch (e) {}
}
```

Note to self:
- follow https://itnext.io/step-by-step-building-and-publishing-an-npm-typescript-package-44fe7164964c for deployment
- add ./dist/index.d.ts file
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-simple-alarm",
"title": "React Native Simple Alarm",
"version": "2.0.0",
"version": "2.0.1",
"description": "Alarm clock functionality for react native ios and android using react-native-push-notification and react-native-community/async-storage",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -44,7 +44,7 @@
"@babel/runtime": "^7.9.2",
"@react-native-community/eslint-config": "^3.0.1",
"@types/node": "^17.0.10",
"@types/react-native": "^0.66.15",
"@types/react-native": ">=0.60.0-rc.0 <1.0.x",
"@types/react-native-push-notification": "^7.3.3",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"declaration": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
}
}
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@
resolved "https://registry.yarnpkg.com/@types/react-native-push-notification/-/react-native-push-notification-7.3.3.tgz#76d8cd73e37d5348ba714e8632e98615677961d2"
integrity sha512-6LmfaZ0cRuk4oEdBZEJVRZ8DoPHz95fqD7wW3jBbcJFy3U23eSE+MeSQall4BCZFBZDGT1KCEGFCwflTxFEZMw==

"@types/react-native@^0.66.15":
"@types/react-native@>=0.60.0-rc.0 <1.0.x":
version "0.66.15"
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.66.15.tgz#d332d82b04635adabbd8e1976f9547ce8662300b"
integrity sha512-qNK3LZhNpSd2Hdr0OFdvQ/VOb1qcjNhmw96LsOtxIN+1RtXHO/1dVzxYUlWnKMCtV+E5WSaWM703c9Q7gG9tyg==
Expand Down

0 comments on commit df83fcd

Please sign in to comment.