@visulima/error 3.2.1 → 3.2.3
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/CHANGELOG.md +15 -0
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## @visulima/error [3.2.3](https://github.com/visulima/visulima/compare/@visulima/error@3.2.2...@visulima/error@3.2.3) (2024-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added missing os key to package.json ([4ad1268](https://github.com/visulima/visulima/commit/4ad1268ed12cbdcf60aeb46d4c052ed1696bc150))
|
|
7
|
+
|
|
8
|
+
## @visulima/error [3.2.2](https://github.com/visulima/visulima/compare/@visulima/error@3.2.1...@visulima/error@3.2.2) (2024-03-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@visulima/nextra-theme-docs:** upgraded to 4.0.19
|
|
15
|
+
|
|
1
16
|
## @visulima/error [3.2.1](https://github.com/visulima/visulima/compare/@visulima/error@3.2.0...@visulima/error@3.2.1) (2024-03-16)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/error",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "Error with more than just a message, stacktrace parsing and sourcemap loading.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -114,17 +114,17 @@
|
|
|
114
114
|
"@anolilab/eslint-config": "^15.0.3",
|
|
115
115
|
"@anolilab/prettier-config": "^5.0.14",
|
|
116
116
|
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
117
|
-
"@babel/core": "^7.24.
|
|
117
|
+
"@babel/core": "^7.24.3",
|
|
118
118
|
"@eslint-types/deprecation": "^2.0.0",
|
|
119
119
|
"@eslint-types/import": "^2.29.1",
|
|
120
|
-
"@eslint-types/jsdoc": "^48.2.
|
|
121
|
-
"@eslint-types/typescript-eslint": "^7.0
|
|
120
|
+
"@eslint-types/jsdoc": "^48.2.1",
|
|
121
|
+
"@eslint-types/typescript-eslint": "^7.2.0",
|
|
122
122
|
"@eslint-types/unicorn": "^51.0.1",
|
|
123
123
|
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
124
124
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
125
125
|
"@types/command-line-args": "^5.2.3",
|
|
126
126
|
"@types/node": "18.18.14",
|
|
127
|
-
"@visulima/nextra-theme-docs": "4.0.
|
|
127
|
+
"@visulima/nextra-theme-docs": "4.0.19",
|
|
128
128
|
"@vitest/coverage-v8": "^1.4.0",
|
|
129
129
|
"@vitest/ui": "^1.4.0",
|
|
130
130
|
"cross-env": "^7.0.3",
|
|
@@ -136,15 +136,20 @@
|
|
|
136
136
|
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
137
137
|
"prettier": "^3.2.5",
|
|
138
138
|
"rimraf": "^5.0.5",
|
|
139
|
-
"semantic-release": "^23.0.
|
|
139
|
+
"semantic-release": "^23.0.5",
|
|
140
140
|
"sort-package-json": "^2.8.0",
|
|
141
141
|
"tsup": "^8.0.2",
|
|
142
|
-
"typescript": "^5.4.
|
|
142
|
+
"typescript": "^5.4.3",
|
|
143
143
|
"vitest": "^1.4.0"
|
|
144
144
|
},
|
|
145
145
|
"engines": {
|
|
146
146
|
"node": ">=18.* <=21.*"
|
|
147
147
|
},
|
|
148
|
+
"os": [
|
|
149
|
+
"darwin",
|
|
150
|
+
"linux",
|
|
151
|
+
"win32"
|
|
152
|
+
],
|
|
148
153
|
"publishConfig": {
|
|
149
154
|
"access": "public",
|
|
150
155
|
"provenance": true
|