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
{"lastUpload":"2022-03-15T13:52:46.456Z","extensionVersion":"v3.4.3"} |
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 | |
# mv.sh | |
dir="$2" | |
tmp="$2"; tmp="${tmp: -1}" | |
[ "$tmp" != "/" ] && dir="$(dirname "$2")" | |
[ -a "$dir" ] || | |
mkdir -p "$dir" && | |
mv "$@" |
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
/* | |
* Magento 2 mixins for js files that return an UIComponent | |
* (based on https://alanstorm.com/the-curious-case-of-magento-2-mixins/) | |
* (for files that return an object literal: https://gist.github.com/alecarg/71a28b6d0ce2c3b7073481cc52fe1e23) | |
* (for files that return a function: ) | |
*/ | |
define([ | |
], function () { | |
'use strict'; |
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
/* | |
* Magento 2 mixins for js files that return an object literal | |
* (based on https://alanstorm.com/the-curious-case-of-magento-2-mixins/) | |
* (for files that return an UIComponent: https://gist.github.com/alecarg/ed0516132e9c8a31c66f13fbccd292cf) | |
* (for files that return a function: ) | |
*/ | |
define([ | |
'mage/utils/wrapper' | |
], function (wrapper) { |