@atlaspack/core 2.14.1-dev.129 → 2.14.1-dev.134

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.
@@ -403,6 +403,10 @@ class PackagerRunner {
403
403
  inlineSources = this.options.mode === 'production';
404
404
  }
405
405
  }
406
+ if (process.env.ATLASPACK_SUPER_BUILD === 'true') {
407
+ // Set source root to 'atlaspack' so stack traces are clean in Sentry
408
+ sourceRoot = 'atlaspack';
409
+ }
406
410
  let isInlineMap = bundle.env.sourceMap && bundle.env.sourceMap.inline;
407
411
  let stringified = await map.stringify({
408
412
  file: _path().default.basename(fullPath + '.map'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.14.1-dev.129+533a10146",
3
+ "version": "2.14.1-dev.134+e072f4b10",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -20,21 +20,21 @@
20
20
  "check-ts": "tsc --noEmit index.d.ts"
21
21
  },
22
22
  "dependencies": {
23
- "@atlaspack/build-cache": "2.13.3-dev.129+533a10146",
24
- "@atlaspack/cache": "2.13.3-dev.129+533a10146",
25
- "@atlaspack/diagnostic": "2.14.1-dev.129+533a10146",
26
- "@atlaspack/events": "2.14.1-dev.129+533a10146",
27
- "@atlaspack/feature-flags": "2.14.1-dev.129+533a10146",
28
- "@atlaspack/fs": "2.14.1-dev.129+533a10146",
29
- "@atlaspack/graph": "3.4.1-dev.129+533a10146",
30
- "@atlaspack/logger": "2.14.1-dev.129+533a10146",
31
- "@atlaspack/package-manager": "2.14.1-dev.129+533a10146",
32
- "@atlaspack/plugin": "2.14.1-dev.129+533a10146",
33
- "@atlaspack/profiler": "2.14.1-dev.129+533a10146",
34
- "@atlaspack/rust": "3.0.1-dev.129+533a10146",
35
- "@atlaspack/types": "2.14.1-dev.129+533a10146",
36
- "@atlaspack/utils": "2.14.1-dev.129+533a10146",
37
- "@atlaspack/workers": "2.14.1-dev.129+533a10146",
23
+ "@atlaspack/build-cache": "2.13.3-dev.134+e072f4b10",
24
+ "@atlaspack/cache": "2.13.3-dev.134+e072f4b10",
25
+ "@atlaspack/diagnostic": "2.14.1-dev.134+e072f4b10",
26
+ "@atlaspack/events": "2.14.1-dev.134+e072f4b10",
27
+ "@atlaspack/feature-flags": "2.14.1-dev.134+e072f4b10",
28
+ "@atlaspack/fs": "2.14.1-dev.134+e072f4b10",
29
+ "@atlaspack/graph": "3.4.1-dev.134+e072f4b10",
30
+ "@atlaspack/logger": "2.14.1-dev.134+e072f4b10",
31
+ "@atlaspack/package-manager": "2.14.1-dev.134+e072f4b10",
32
+ "@atlaspack/plugin": "2.14.1-dev.134+e072f4b10",
33
+ "@atlaspack/profiler": "2.14.1-dev.134+e072f4b10",
34
+ "@atlaspack/rust": "3.0.1-dev.134+e072f4b10",
35
+ "@atlaspack/types": "2.14.1-dev.134+e072f4b10",
36
+ "@atlaspack/utils": "2.14.1-dev.134+e072f4b10",
37
+ "@atlaspack/workers": "2.14.1-dev.134+e072f4b10",
38
38
  "@mischnic/json-sourcemap": "^0.1.0",
39
39
  "@parcel/source-map": "^2.1.1",
40
40
  "base-x": "^3.0.8",
@@ -70,5 +70,5 @@
70
70
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
71
71
  },
72
72
  "type": "commonjs",
73
- "gitHead": "533a101467aac26c0d1de851be92d423d89f6c66"
73
+ "gitHead": "e072f4b100a13d97c544324004819ee51cdac4a8"
74
74
  }
@@ -601,6 +601,11 @@ export default class PackagerRunner {
601
601
  }
602
602
  }
603
603
 
604
+ if (process.env.ATLASPACK_SUPER_BUILD === 'true') {
605
+ // Set source root to 'atlaspack' so stack traces are clean in Sentry
606
+ sourceRoot = 'atlaspack';
607
+ }
608
+
604
609
  let mapFilename = fullPath + '.map';
605
610
  let isInlineMap = bundle.env.sourceMap && bundle.env.sourceMap.inline;
606
611