@minecraft/core-build-tasks 4.0.0 → 5.0.0
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.json +31 -1
- package/CHANGELOG.md +18 -2
- package/lib/index.js +14685 -6609
- package/lib/tasks/bundle.d.ts +2 -0
- package/lib/tasks/vitest.d.ts +5 -1
- package/lib-cjs/index.js +14682 -6606
- package/package.json +8 -8
package/lib/tasks/bundle.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ export type BundleTaskParameters = {
|
|
|
13
13
|
sourcemap?: boolean | 'linked' | 'inline' | 'external' | 'both';
|
|
14
14
|
/** The output path for the source map file. Ignored if sourcemap is false or 'inline'. */
|
|
15
15
|
outputSourcemapPath?: string;
|
|
16
|
+
/** Strip out statements with these labels. Documentation: https://esbuild.github.io/api/#drop-labels */
|
|
17
|
+
dropLabels?: string[];
|
|
16
18
|
};
|
|
17
19
|
export type PostProcessOutputFilesResult = {
|
|
18
20
|
sourceMapDirectory: string;
|
package/lib/tasks/vitest.d.ts
CHANGED