Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.

Commit 4bcd802

Browse files
authored
chore: release v3.1.0 (#969)
* chore: release v3.1.0 * chore: package-lock.json * chore: publish command for @next
1 parent b699f1b commit 4bcd802

File tree

4 files changed

+36
-40
lines changed

4 files changed

+36
-40
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [3.1.0](https://github.com/honeybadger-io/honeybadger-vue/compare/v3.0.1...v3.1.0) (2022-05-30)
2+
3+
4+
### Bug Fixes
5+
6+
* docs vue3.x link ([#945](https://github.com/honeybadger-io/honeybadger-vue/issues/945)) ([34182c5](https://github.com/honeybadger-io/honeybadger-vue/commit/34182c51eb51bd32cfc0f786eee538c06e703639))
7+
8+
9+
### Features
10+
11+
* shipjs integration ([#954](https://github.com/honeybadger-io/honeybadger-vue/issues/954)) ([b699f1b](https://github.com/honeybadger-io/honeybadger-vue/commit/b699f1b1fc1269c1901f12d7105d9893b268d980)), closes [#949](https://github.com/honeybadger-io/honeybadger-vue/issues/949)
12+
13+
14+
115
## [3.0.1] - 2022-03-24
216
### Added
317
- Log error to console in development (#865)

package-lock.json

Lines changed: 2 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@honeybadger-io/vue",
3-
"version": "3.0.1",
3+
"version": "3.1.0",
44
"license": "MIT",
55
"description": "Honeybadger Vue.js client",
66
"author": "Jason Truesdell <jason@yuzuten.com> (https://github.com/JasonTrue)",
@@ -11,11 +11,19 @@
1111
"type": "git",
1212
"url": "git+ssh://git@github.com/honeybadger-io/honeybadger-vue.git"
1313
},
14-
"keywords": ["vue", "vuejs", "honeybadger"],
14+
"keywords": [
15+
"vue",
16+
"vuejs",
17+
"honeybadger"
18+
],
1519
"main": "dist/honeybadger-vue.umd.js",
1620
"module": "dist/honeybadger-vue.umd.js",
1721
"unpkg": "dist/honeybadger-vue.min.js",
18-
"files": ["dist", "src", "honeybadger-vue.d.ts"],
22+
"files": [
23+
"dist",
24+
"src",
25+
"honeybadger-vue.d.ts"
26+
],
1927
"homepage": "https://github.com/honeybadger-io/honeybadger-vue#readme",
2028
"scripts": {
2129
"dev": "webpack serve --progress --config build/webpack.dev.conf.js",
@@ -126,7 +134,11 @@
126134
"node": ">= 6.0.0",
127135
"npm": ">= 3.0.0"
128136
},
129-
"browserslist": ["> 1%", "last 2 versions", "not ie <= 8"],
137+
"browserslist": [
138+
"> 1%",
139+
"last 2 versions",
140+
"not ie <= 8"
141+
],
130142
"directories": {
131143
"test": "test"
132144
},
@@ -141,7 +153,9 @@
141153
"types": "./honeybadger-vue.d.ts",
142154
"tsd": {
143155
"compilerOptions": {
144-
"lib": ["DOM"]
156+
"lib": [
157+
"DOM"
158+
]
145159
}
146160
}
147161
}

ship.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ module.exports = {
77
return true;
88
},
99
publishCommand: ({ defaultCommand, tag }) =>
10-
`${defaultCommand} --access public --tag next`,
10+
`npm publish --access public --tag next`,
1111
};

0 commit comments

Comments
 (0)