@visulima/error 4.4.1 → 4.4.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +20 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## @visulima/error [4.4.2](https://github.com/visulima/visulima/compare/@visulima/error@4.4.1...@visulima/error@4.4.2) (2024-09-07)
2
+
3
+ ### Bug Fixes
4
+
5
+ * added types support for node10 ([604583f](https://github.com/visulima/visulima/commit/604583fa3c24b950fafad45d17e7a1333040fd76))
6
+
7
+ ### Styles
8
+
9
+ * cs fixes ([f5c4af7](https://github.com/visulima/visulima/commit/f5c4af7cfa9fc79b6d3fa60c1e48d88bffab5a08))
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * update dev dependencies ([0738f98](https://github.com/visulima/visulima/commit/0738f9810478bb215ce4b2571dc8874c4c503089))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * **@visulima/path:** upgraded to 1.0.6
19
+
1
20
  ## @visulima/error [4.4.1](https://github.com/visulima/visulima/compare/@visulima/error@4.4.0...@visulima/error@4.4.1) (2024-08-30)
2
21
 
3
22
  ### Miscellaneous Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/error",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "Error with more than just a message, stacktrace parsing.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -37,9 +37,12 @@
37
37
  "visulima"
38
38
  ],
39
39
  "homepage": "https://www.visulima.com/docs/package/error",
40
+ "bugs": {
41
+ "url": "https://github.com/visulima/visulima/issues"
42
+ },
40
43
  "repository": {
41
44
  "type": "git",
42
- "url": "https://github.com/visulima/visulima.git",
45
+ "url": "git+https://github.com/visulima/visulima.git",
43
46
  "directory": "packages/error"
44
47
  },
45
48
  "funding": [
@@ -105,6 +108,16 @@
105
108
  "main": "dist/index.cjs",
106
109
  "module": "dist/index.mjs",
107
110
  "types": "dist/index.d.ts",
111
+ "typesVersions": {
112
+ "*": {
113
+ "*": [
114
+ "./dist/code-frame/index.d.ts",
115
+ "./dist/code-frame/index.d.ts",
116
+ "./dist/error/index.d.ts",
117
+ "./dist/stacktrace/index.d.ts"
118
+ ]
119
+ }
120
+ },
108
121
  "files": [
109
122
  "dist",
110
123
  "README.md",
@@ -116,6 +129,7 @@
116
129
  "@anolilab/prettier-config": "^5.0.14",
117
130
  "@anolilab/semantic-release-pnpm": "^1.1.3",
118
131
  "@anolilab/semantic-release-preset": "^9.0.0",
132
+ "@arethetypeswrong/cli": "^0.15.4",
119
133
  "@babel/core": "^7.25.2",
120
134
  "@eslint-types/deprecation": "^2.0.0",
121
135
  "@eslint-types/import": "^2.29.1",
@@ -123,12 +137,12 @@
123
137
  "@eslint-types/typescript-eslint": "^7.5.0",
124
138
  "@eslint-types/unicorn": "^52.0.0",
125
139
  "@rushstack/eslint-plugin-security": "^0.8.2",
126
- "@total-typescript/ts-reset": "^0.6.0",
140
+ "@total-typescript/ts-reset": "^0.6.1",
127
141
  "@types/command-line-args": "^5.2.3",
128
142
  "@types/node": "18.19.15",
129
143
  "@visulima/nextra-theme-docs": "4.0.26",
130
- "@visulima/packem": "^1.0.0-alpha.86",
131
- "@visulima/path": "1.0.5",
144
+ "@visulima/packem": "^1.0.0-alpha.93",
145
+ "@visulima/path": "1.0.6",
132
146
  "@vitest/coverage-v8": "^2.0.5",
133
147
  "@vitest/ui": "^2.0.5",
134
148
  "conventional-changelog-conventionalcommits": "8.0.0",
@@ -177,6 +191,7 @@
177
191
  "build:prod": "cross-env NODE_ENV=production packem build",
178
192
  "clean": "rimraf node_modules dist .eslintcache",
179
193
  "dev": "pnpm run build --watch",
194
+ "lint:attw": "attw --pack",
180
195
  "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
181
196
  "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
182
197
  "lint:package-json": "publint --strict",