Skip to content

Commit

Permalink
fix(vue3): missing index.d.ts (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
DSergiu authored Feb 6, 2023
1 parent 34e5dea commit 676b1c0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ yarn-error.log*

examples/*/*.lock
coverage

packages/vue3/types/*
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 1.2.1

- Fix: Missing `index.d.ts` for `@hcaptcha/vue3-hcaptcha`

# 1.2.0

- Feat: Typescript support for `@hcaptcha/vue3-hcaptcha`
2 changes: 1 addition & 1 deletion packages/vue2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hcaptcha/vue-hcaptcha",
"version": "1.2.0",
"version": "1.2.1",
"types": "types/index.d.ts",
"main": "./dist/@hcaptcha/vue-hcaptcha.umd.min.js",
"module": "./dist/@hcaptcha/vue-hcaptcha.common.js",
Expand Down
5 changes: 3 additions & 2 deletions packages/vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hcaptcha/vue3-hcaptcha",
"version": "1.2.0",
"version": "1.2.1",
"author": "hCaptcha team and contributors",
"homepage": "https://github.com/hCaptcha/vue-hcaptcha",
"organization": "hCaptcha",
Expand All @@ -20,7 +20,8 @@
"main": "./dist/hcaptcha-vue3.umd.js",
"module": "./dist/hcaptcha-vue3.es.js",
"files": [
"dist"
"dist",
"types/index.d.ts"
],
"types": "types/index.d.ts",
"scripts": {
Expand Down

0 comments on commit 676b1c0

Please sign in to comment.