ms-vite-plugin 1.3.6 → 1.3.8

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