@vibexdotnew/inspector 0.0.12 → 0.0.13
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/next/element-tagger.cjs +2 -3
- package/package.json +1 -1
package/next/element-tagger.cjs
CHANGED
|
@@ -356,10 +356,9 @@ function flexElementTagger(source, sourceMap) {
|
|
|
356
356
|
|
|
357
357
|
// Generate output
|
|
358
358
|
const output = magicStr.toString();
|
|
359
|
-
const outputMap = magicStr.generateMap({ hires: true });
|
|
360
359
|
|
|
361
|
-
//
|
|
362
|
-
callback(null, output
|
|
360
|
+
// Return without sourcemap - Turbopack handles it better
|
|
361
|
+
callback(null, output);
|
|
363
362
|
|
|
364
363
|
} catch (error) {
|
|
365
364
|
// On ANY error, return original source unchanged
|