hoa 0.3.0 → 0.3.1
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 +4 -0
- package/dist/cjs/hoa.js +1 -4
- package/dist/esm/hoa.js +1 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/cjs/hoa.js
CHANGED
|
@@ -151,10 +151,7 @@ class Hoa {
|
|
|
151
151
|
}
|
|
152
152
|
if (err.status === 404 || err.expose) return;
|
|
153
153
|
if (this.silent) return;
|
|
154
|
-
|
|
155
|
-
console.error(`
|
|
156
|
-
${msg.replace(/^/gm, " ")}
|
|
157
|
-
`);
|
|
154
|
+
console.error(err);
|
|
158
155
|
}
|
|
159
156
|
/**
|
|
160
157
|
* ESM/CJS interop helper for default exports.
|
package/dist/esm/hoa.js
CHANGED
|
@@ -113,10 +113,7 @@ class Hoa {
|
|
|
113
113
|
}
|
|
114
114
|
if (err.status === 404 || err.expose) return;
|
|
115
115
|
if (this.silent) return;
|
|
116
|
-
|
|
117
|
-
console.error(`
|
|
118
|
-
${msg.replace(/^/gm, " ")}
|
|
119
|
-
`);
|
|
116
|
+
console.error(err);
|
|
120
117
|
}
|
|
121
118
|
/**
|
|
122
119
|
* ESM/CJS interop helper for default exports.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hoa",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "A minimal web framework built on Web Standards",
|
|
5
5
|
"main": "./dist/cjs/hoa.js",
|
|
6
6
|
"type": "module",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@commitlint/cli": "20.1.0",
|
|
52
52
|
"@commitlint/config-conventional": "20.0.0",
|
|
53
|
-
"eslint": "9.
|
|
54
|
-
"globals": "16.
|
|
53
|
+
"eslint": "9.39.1",
|
|
54
|
+
"globals": "16.5.0",
|
|
55
55
|
"husky": "9.1.7",
|
|
56
56
|
"jest": "30.2.0",
|
|
57
57
|
"neostandard": "0.12.2",
|