Skip to content

Commit 6403333

Browse files
author
Kyle Andrews
committed
Adds declaration file to package
1 parent ead51a3 commit 6403333

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.2] - 2020-01-09
11+
12+
### Added
13+
14+
- `Notify.d.ts` declaration file to the `files` array in `package.json`
15+
1016
## [1.0.1] - 2020-01-09
1117

1218
### Added
@@ -46,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4652

4753
- Entire existing codebase due to rewrite
4854

49-
[Unreleased]: https://github.com/codewithkyle/notifyjs/compare/v1.0.1...HEAD
55+
[Unreleased]: https://github.com/codewithkyle/notifyjs/compare/v1.0.2...HEAD
56+
[1.0.2]: https://github.com/codewithkyle/notifyjs/compare/v1.0.1...v1.0.2
5057
[1.0.1]: https://github.com/codewithkyle/notifyjs/compare/v1.0.0...v1.0.1
5158
[1.0.0]: https://github.com/codewithkyle/notifyjs/compare/v0.2.0...v1.0.0
5259
[0.2.0]: https://github.com/codewithkyle/notifyjs/compare/v0.1.0...v0.2.0

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "@codewithkyle/notifyjs",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A simple JavaScript library for creating and managing snackbar notifications",
55
"main": "Notify.js",
66
"types": "Notify.d.ts",
77
"files": [
88
"Notify.js",
9-
"Notify.js.map"
9+
"Notify.js.map",
10+
"Notify.d.ts"
1011
],
1112
"scripts": {
1213
"compile": "tsc"
@@ -22,5 +23,8 @@
2223
"devDependencies": {
2324
"typescript": "^3.7.4"
2425
},
26+
"publishConfig": {
27+
"registry": "https://npm.pkg.github.com/"
28+
},
2529
"dependencies": {}
2630
}

0 commit comments

Comments
 (0)