Skip to content

Commit

Permalink
Showing 3 changed files with 24 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -4,5 +4,9 @@
"initialVersions": {
"@rabbitholegg/questdk": "1.0.0"
},
"changesets": ["cool-geckos-sit", "rude-humans-jump"]
"changesets": [
"cool-geckos-sit",
"rude-humans-jump",
"smart-tips-arrive"
]
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @rabbitholegg/questdk

## 1.0.1-alpha.2

### Patch Changes

- [`2075114`](https://github.com/rabbitholegg/questdk/commit/2075114137cc5f84a7e215a188c168fcb5717829) Thanks [@jimobrien](https://github.com/jimobrien)! - add type exports

## 1.0.1-alpha.1

### Patch Changes
18 changes: 13 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rabbitholegg/questdk",
"version": "1.0.1-alpha.1",
"version": "1.0.1-alpha.2",
"description": "",
"type": "module",
"main": "./dist/cjs/index.js",
@@ -32,15 +32,23 @@
"typecheck": "tsc --noEmit"
},
"keywords": [],
"authors": ["rabbitholegg"],
"authors": [
"rabbitholegg"
],
"license": "MIT",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"typesVersions": {
"*": {
"utils": ["./dist/types/utils/index.d.ts"],
"actions": ["./dist/types/actions/index.d.ts"],
"filter": ["./dist/types/filter/index.d.ts"]
"utils": [
"./dist/types/utils/index.d.ts"
],
"actions": [
"./dist/types/actions/index.d.ts"
],
"filter": [
"./dist/types/filter/index.d.ts"
]
}
},
"sideEffects": false,

0 comments on commit 63d82a4

Please sign in to comment.