This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Path to the composer.json file | |
COMPOSER_FILE="composer.json" | |
TEMP_FILE="composer_temp.json" | |
# Checkout the composer.json file to avoid unwanted changes | |
git checkout "$COMPOSER_FILE" | |
# Create a new file to hold updated content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fix jquery-ui effects anonymous define error when using magepack. See https://github.com/magesuite/magepack/issues/140 for more. | |
@package magento/magento2-base | |
diff --git a/lib/web/jquery/ui-modules/effects/effect-blind.js b/lib/web/jquery/ui-modules/effects/effect-blind.js | |
index 3b65a4f..513a89b 100644 | |
--- a/lib/web/jquery/ui-modules/effects/effect-blind.js | |
+++ b/lib/web/jquery/ui-modules/effects/effect-blind.js | |
@@ -19,7 +19,7 @@ | |
if ( typeof define === "function" && define.amd ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Patch apllying tool template | |
# v0.1.2 | |
# (c) Copyright 2013. Magento Inc. | |
# | |
# DO NOT CHANGE ANY LINE IN THIS FILE. | |
# 1. Check required system tools | |
_check_installed_tools() { | |
local missed="" |