@minecraft/core-build-tasks 5.5.0 → 5.6.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 CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@minecraft/core-build-tasks",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 29 Sep 2025 17:42:07 GMT",
5
+ "date": "Tue, 13 Jan 2026 21:28:14 GMT",
6
+ "version": "5.6.0",
7
+ "tag": "@minecraft/core-build-tasks_v5.6.0",
8
+ "comments": {
9
+ "minor": [
10
+ {
11
+ "author": "gbaman@users.noreply.github.com",
12
+ "package": "@minecraft/core-build-tasks",
13
+ "commit": "a34bac233ddd7c0d77b6e94f0aebb9e05b837f8b",
14
+ "comment": "Add support for Minecraft Education (desktop and UWP version) for deployment"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Mon, 29 Sep 2025 17:42:55 GMT",
6
21
  "version": "5.5.0",
7
22
  "tag": "@minecraft/core-build-tasks_v5.5.0",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @minecraft/core-build-tasks
2
2
 
3
- <!-- This log was last generated on Mon, 29 Sep 2025 17:42:07 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Tue, 13 Jan 2026 21:28:14 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 5.6.0
8
+
9
+ Tue, 13 Jan 2026 21:28:14 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - Add support for Minecraft Education (desktop and UWP version) for deployment (gbaman@users.noreply.github.com)
14
+
7
15
  ## 5.5.0
8
16
 
9
- Mon, 29 Sep 2025 17:42:07 GMT
17
+ Mon, 29 Sep 2025 17:42:55 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
package/lib/index.js CHANGED
@@ -53580,6 +53580,8 @@ var MinecraftProduct = /* @__PURE__ */ ((MinecraftProduct2) => {
53580
53580
  MinecraftProduct2["PreviewGDK"] = "PreviewGDK";
53581
53581
  MinecraftProduct2["Bedrock"] = "BedrockUWP";
53582
53582
  MinecraftProduct2["Preview"] = "PreviewUWP";
53583
+ MinecraftProduct2["EducationUWP"] = "EducationUWP";
53584
+ MinecraftProduct2["EducationDesktop"] = "EducationDesktop";
53583
53585
  MinecraftProduct2["Custom"] = "Custom";
53584
53586
  return MinecraftProduct2;
53585
53587
  })(MinecraftProduct || {});
@@ -53740,10 +53742,14 @@ var STANDARD_CLEAN_PATHS = [
53740
53742
  "APPDATA/Minecraft Bedrock/Users/Shared/games/com.mojang/development_resource_packs/PROJECT_NAME",
53741
53743
  "APPDATA/Minecraft Bedrock Preview/Users/Shared/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53742
53744
  "APPDATA/Minecraft Bedrock Preview/Users/Shared/games/com.mojang/development_resource_packs/PROJECT_NAME",
53745
+ "APPDATA/Minecraft Education Education/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53746
+ "APPDATA/Minecraft Education Education/games/com.mojang/development_resource_packs/PROJECT_NAME",
53743
53747
  "LOCALAPPDATA/Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53744
53748
  "LOCALAPPDATA/Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME",
53745
53749
  "LOCALAPPDATA/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53746
- "LOCALAPPDATA/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME"
53750
+ "LOCALAPPDATA/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME",
53751
+ "LOCALAPPDATA/Packages/Microsoft.MinecraftEducationEdition_8wekyb3d8bbwe/LocalState/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53752
+ "LOCALAPPDATA/Packages/Microsoft.MinecraftEducationEdition_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME"
53747
53753
  ];
53748
53754
  function cleanCollateralTask(pathsToClean) {
53749
53755
  return () => {
@@ -53849,6 +53855,11 @@ function getGameDeploymentRootPaths() {
53849
53855
  localAppDataPath,
53850
53856
  "Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/"
53851
53857
  ) : void 0,
53858
+ EducationUWP: localAppDataPath ? resolve2(
53859
+ localAppDataPath,
53860
+ "Packages/Microsoft.MinecraftEducationEdition_8wekyb3d8bbwe/LocalState/games/com.mojang/"
53861
+ ) : void 0,
53862
+ EducationDesktop: appDataPath ? resolve2(appDataPath, "Minecraft Education Edition/games/com.mojang/") : void 0,
53852
53863
  Custom: customDeploymentPath ? customDeploymentPath : void 0
53853
53864
  };
53854
53865
  }
@@ -6,5 +6,7 @@ export declare enum MinecraftProduct {
6
6
  PreviewGDK = "PreviewGDK",
7
7
  Bedrock = "BedrockUWP",
8
8
  Preview = "PreviewUWP",
9
+ EducationUWP = "EducationUWP",
10
+ EducationDesktop = "EducationDesktop",
9
11
  Custom = "Custom"
10
12
  }
package/lib-cjs/index.js CHANGED
@@ -53607,6 +53607,8 @@ var MinecraftProduct = /* @__PURE__ */ ((MinecraftProduct2) => {
53607
53607
  MinecraftProduct2["PreviewGDK"] = "PreviewGDK";
53608
53608
  MinecraftProduct2["Bedrock"] = "BedrockUWP";
53609
53609
  MinecraftProduct2["Preview"] = "PreviewUWP";
53610
+ MinecraftProduct2["EducationUWP"] = "EducationUWP";
53611
+ MinecraftProduct2["EducationDesktop"] = "EducationDesktop";
53610
53612
  MinecraftProduct2["Custom"] = "Custom";
53611
53613
  return MinecraftProduct2;
53612
53614
  })(MinecraftProduct || {});
@@ -53767,10 +53769,14 @@ var STANDARD_CLEAN_PATHS = [
53767
53769
  "APPDATA/Minecraft Bedrock/Users/Shared/games/com.mojang/development_resource_packs/PROJECT_NAME",
53768
53770
  "APPDATA/Minecraft Bedrock Preview/Users/Shared/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53769
53771
  "APPDATA/Minecraft Bedrock Preview/Users/Shared/games/com.mojang/development_resource_packs/PROJECT_NAME",
53772
+ "APPDATA/Minecraft Education Education/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53773
+ "APPDATA/Minecraft Education Education/games/com.mojang/development_resource_packs/PROJECT_NAME",
53770
53774
  "LOCALAPPDATA/Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53771
53775
  "LOCALAPPDATA/Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME",
53772
53776
  "LOCALAPPDATA/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53773
- "LOCALAPPDATA/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME"
53777
+ "LOCALAPPDATA/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME",
53778
+ "LOCALAPPDATA/Packages/Microsoft.MinecraftEducationEdition_8wekyb3d8bbwe/LocalState/games/com.mojang/development_behavior_packs/PROJECT_NAME",
53779
+ "LOCALAPPDATA/Packages/Microsoft.MinecraftEducationEdition_8wekyb3d8bbwe/LocalState/games/com.mojang/development_resource_packs/PROJECT_NAME"
53774
53780
  ];
53775
53781
  function cleanCollateralTask(pathsToClean) {
53776
53782
  return () => {
@@ -53876,6 +53882,11 @@ function getGameDeploymentRootPaths() {
53876
53882
  localAppDataPath,
53877
53883
  "Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/"
53878
53884
  ) : void 0,
53885
+ EducationUWP: localAppDataPath ? (0, import_path4.resolve)(
53886
+ localAppDataPath,
53887
+ "Packages/Microsoft.MinecraftEducationEdition_8wekyb3d8bbwe/LocalState/games/com.mojang/"
53888
+ ) : void 0,
53889
+ EducationDesktop: appDataPath ? (0, import_path4.resolve)(appDataPath, "Minecraft Education Edition/games/com.mojang/") : void 0,
53879
53890
  Custom: customDeploymentPath ? customDeploymentPath : void 0
53880
53891
  };
53881
53892
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft/core-build-tasks",
3
- "version": "5.5.0",
3
+ "version": "5.6.0",
4
4
  "description": "Common build tasks used for minecraft-scripting-libraries",
5
5
  "exports": {
6
6
  "types": "./lib/index.d.ts",