@honeybadger-io/vue 1.0.4 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -1
- package/package.json +18 -12
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
For comprehensive documentation and support, [check out our documentation site](https://docs.honeybadger.io/lib/javascript/index.html).
|
|
11
11
|
|
|
12
|
-
The documentation includes a detailed [Vue integration guide](https://docs.honeybadger.io/lib/javascript/integration/
|
|
12
|
+
The documentation includes a detailed [Vue integration guide](https://docs.honeybadger.io/lib/javascript/integration/vue2.html)
|
|
13
13
|
|
|
14
14
|
## Project Goals
|
|
15
15
|
|
|
@@ -41,6 +41,7 @@ please [file an issue on GitHub](https://github.com/honeybadger-io/honeybadger-v
|
|
|
41
41
|
## Changelog
|
|
42
42
|
|
|
43
43
|
See https://github.com/honeybadger-io/honeybadger-vue/blob/master/CHANGELOG.md
|
|
44
|
+
Changelog is automatically generated with [our release automation process](#release-automation).
|
|
44
45
|
|
|
45
46
|
## Contributing
|
|
46
47
|
|
|
@@ -91,6 +92,17 @@ To perform a release:
|
|
|
91
92
|
2. To publish the release, use `npm publish`. See `npm help publish` for
|
|
92
93
|
documentation.
|
|
93
94
|
|
|
95
|
+
### Release Automation
|
|
96
|
+
|
|
97
|
+
We use [Ship.js](https://github.com/algolia/shipjs) to automate releasing.
|
|
98
|
+
|
|
99
|
+
Ship.js creates a PR once per week when unreleased changes are present. You can also trigger a release PR by saying "@shipjs prepare" in any issue or pull request comment on GitHub.
|
|
100
|
+
|
|
101
|
+
#### Troubleshooting a failed Ship.js release
|
|
102
|
+
|
|
103
|
+
If a ship.js release fails, you need to revert the release commit and delete the release branch (e.g `releases/v1.1.0`)
|
|
104
|
+
Then, you can debug the issue by simulating the release process locally (`npm run release -- --dry-run --yes --no-browse`).
|
|
105
|
+
|
|
94
106
|
### License
|
|
95
107
|
|
|
96
108
|
*honeybadger-vue* is MIT licensed. See the [LICENSE](https://raw.github.com/honeybadger-io/honeybadger-vue/master/LICENSE) file in this repository for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@honeybadger-io/vue",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Honeybadger Vue.js client",
|
|
6
6
|
"author": "Jason Truesdell <jason@yuzuten.com> (https://github.com/JasonTrue)",
|
|
@@ -42,10 +42,12 @@
|
|
|
42
42
|
"preversion": "npm test",
|
|
43
43
|
"version": "scripts/update-versions.sh",
|
|
44
44
|
"postversion": "git push && git push --tags",
|
|
45
|
-
"prepublishOnly": "npm run build && npm test"
|
|
45
|
+
"prepublishOnly": "npm run build && npm test",
|
|
46
|
+
"prepare": "husky install",
|
|
47
|
+
"release": "shipjs prepare"
|
|
46
48
|
},
|
|
47
49
|
"dependencies": {
|
|
48
|
-
"@honeybadger-io/js": "^
|
|
50
|
+
"@honeybadger-io/js": "^4.0.1"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"@babel/core": "^7.16.12",
|
|
@@ -56,44 +58,47 @@
|
|
|
56
58
|
"@babel/preset-env": "^7.16.11",
|
|
57
59
|
"@babel/register": "^7.16.9",
|
|
58
60
|
"@babel/runtime": "^7.16.7",
|
|
61
|
+
"@commitlint/cli": "^17.0.0",
|
|
62
|
+
"@commitlint/config-conventional": "^17.0.0",
|
|
59
63
|
"@vue/runtime-core": "^3.2.29",
|
|
60
64
|
"ajv": "^8.9.0",
|
|
61
65
|
"autoprefixer": "^10.4.2",
|
|
62
66
|
"babel-core": "^7.0.0-bridge.0",
|
|
63
67
|
"babel-eslint": "^10.1.0",
|
|
64
68
|
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
|
65
|
-
"babel-jest": "^
|
|
69
|
+
"babel-jest": "^28.0.3",
|
|
66
70
|
"babel-loader": "^8.2.3",
|
|
67
71
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
68
72
|
"babel-plugin-transform-vue-jsx": "^4.0.1",
|
|
69
73
|
"browser-resolve": "^2.0.0",
|
|
70
74
|
"chalk": "^5.0.0",
|
|
71
|
-
"chromedriver": "^
|
|
72
|
-
"copy-webpack-plugin": "^
|
|
75
|
+
"chromedriver": "^101.0.0",
|
|
76
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
73
77
|
"cross-spawn": "^7.0.2",
|
|
74
78
|
"css-loader": "^6.5.1",
|
|
75
79
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
|
76
80
|
"dotenv": "^16.0.0",
|
|
77
81
|
"eslint": "^8.8.0",
|
|
78
|
-
"eslint-config-standard": "^
|
|
82
|
+
"eslint-config-standard": "^17.0.0",
|
|
79
83
|
"eslint-friendly-formatter": "^4.0.1",
|
|
80
84
|
"eslint-loader": "^4.0.1",
|
|
81
85
|
"eslint-plugin-import": "^2.25.4",
|
|
82
86
|
"eslint-plugin-node": "^11.1.0",
|
|
83
87
|
"eslint-plugin-promise": "^6.0.0",
|
|
84
88
|
"eslint-plugin-standard": "^5.0.0",
|
|
85
|
-
"eslint-plugin-vue": "^
|
|
89
|
+
"eslint-plugin-vue": "^9.0.1",
|
|
86
90
|
"file-loader": "^6.0.0",
|
|
87
91
|
"friendly-errors-webpack-plugin": "^1.7.0",
|
|
88
92
|
"html-webpack-plugin": "^5.5.0",
|
|
93
|
+
"husky": "^8.0.0",
|
|
89
94
|
"interactive": "^0.1.9",
|
|
90
|
-
"jest": "^
|
|
95
|
+
"jest": "^28.0.3",
|
|
96
|
+
"jest-environment-jsdom": "^28.0.2",
|
|
91
97
|
"jest-serializer-vue": "^2.0.2",
|
|
92
98
|
"mini-css-extract-plugin": "^2.5.3",
|
|
93
99
|
"nightwatch": "^2.0.2",
|
|
94
100
|
"nightwatch-xhr": "^0.4.7",
|
|
95
101
|
"node-notifier": "^10.0.0",
|
|
96
|
-
"ora": "^6.1.0",
|
|
97
102
|
"portfinder": "^1.0.13",
|
|
98
103
|
"postcss": "^8.4.5",
|
|
99
104
|
"postcss-import": "^14.0.2",
|
|
@@ -108,9 +113,10 @@
|
|
|
108
113
|
"selenium-server": "^3.0.1",
|
|
109
114
|
"semver": "^7.3.2",
|
|
110
115
|
"shelljs": "^0.8.5",
|
|
111
|
-
"
|
|
116
|
+
"shipjs": "0.24.4",
|
|
117
|
+
"sinon": "^14.0.0",
|
|
112
118
|
"terser-webpack-plugin": "^5.3.0",
|
|
113
|
-
"tsd": "^0.
|
|
119
|
+
"tsd": "^0.20.0",
|
|
114
120
|
"url-loader": "^4.1.0",
|
|
115
121
|
"vue": "^2.6.14",
|
|
116
122
|
"vue-jest": "^3.0.5",
|