diff --git a/.gitignore b/.gitignore index b74bbbe..55d2bc1 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ # node_modules. node_modules/ -/dist +# dist folder. +dist/ diff --git a/package.json b/package.json index a618a4e..7644b7e 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,18 @@ { "name": "add-to-calendar-button-vue", - "version": "1.2.0", + "version": "1.2.1", "engines": { "node": ">=14.20.0" }, "description": "Convenient Vue.js wrapper for the add to calendar button snippet, which lets you reliably create beautiful buttons, where people can add events to their calendars.", "type": "module", "files": [ - "dist" + "dist", + "tests" ], "main": "./dist/atcb.umd.cjs", "module": "./dist/atcb.js", - "types": "./dist/AddToCalendarButtonComponent.vue.d.ts", + "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/atcb.js",