Skip to content

Commit 1059680

Browse files
committed
Merge branch 'release/1.1.0'
2 parents ba46dd6 + 40785ad commit 1059680

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,9 @@ example-dist
2727

2828
# Local Netlify folder
2929
.netlify
30+
31+
# Task files
32+
Taskfile.yaml
33+
Taskfile.*.yaml
34+
Taskfile.yml
35+
Taskfile.*.yml

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## 1.1.0 (2022-08-23)
6+
7+
### Bug Fixes
8+
9+
* **lib:** correct wrong package configs ([576631b](https://github.com/ansidev/swetrix-vue/commit/576631beee16b0a35c3c5f9dbb35643414e953bd))
10+
511
## 1.1.0-rc.1 (2022-08-23)
612

713
### Bug Fixes

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Swetrix Tracking integration for Vue v3",
44
"author": "Le Minh Tri <[email protected]>",
55
"license": "MIT",
6-
"version": "1.1.0-rc.1",
6+
"version": "1.1.0",
77
"type": "module",
88
"packageManager": "[email protected]",
99
"homepage": "https://github.com/ansidev/swetrix-vue",
@@ -39,21 +39,22 @@
3939
],
4040
"exports": {
4141
".": {
42-
"require": "./dist/index.js",
43-
"import": "./dist/index.mjs"
42+
"types": "./dist/index.d.ts",
43+
"require": "./dist/index.cjs",
44+
"import": "./dist/index.js"
4445
}
4546
},
46-
"main": "./dist/index.js",
47-
"module": "./dist/index.mjs",
47+
"main": "./dist/index.cjs",
48+
"module": "./dist/index.js",
4849
"types": "./dist/index.d.ts",
4950
"files": [
50-
"dist/**/*"
51+
"dist"
5152
],
5253
"scripts": {
5354
"prepare": "husky install",
5455
"lint": "eslint . --ext .ts --ignore-path .gitignore src",
5556
"lint:fix": "eslint --ext .ts --ignore-path .gitignore --fix src",
56-
"build": "tsup lib/index.ts --dts --format cjs,esm",
57+
"build": "tsup lib/index.ts --dts --format cjs,esm --clean",
5758
"build:example": "pnpm run build && vue-tsc --noEmit && vite build",
5859
"dev": "pnpm run build -- --watch && vite",
5960
"preview": "vite preview",

0 commit comments

Comments
 (0)