ms-vite-plugin 1.4.0 → 1.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.
Binary file
@@ -128,7 +128,7 @@ function addCatchStopExceptionGuard(edits, catchClause, code) {
128
128
  const stopGuard = `const ${STOP_GUARD_ERROR_TEXT}=String(${errorExpression});` +
129
129
  `if(${STOP_GUARD_ERROR_TEXT}.includes("${STOP_EXCEPTION_NAME}")||` +
130
130
  `${STOP_GUARD_ERROR_TEXT}.includes("${STOP_RELATED_FUNCTION_ERROR}")){` +
131
- `console.error(${STOP_GUARD_ERROR_TEXT});throw ${errorExpression};` +
131
+ `throw ${errorExpression};` +
132
132
  `}`;
133
133
  edits.push({
134
134
  start: catchClause.body.start + 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ms-vite-plugin",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "type": "commonjs",
5
5
  "license": "MIT",
6
6
  "publishConfig": {