28 lines
1.5 KiB
Bash
Executable File
28 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "/* eslint-disable */
|
|
" > $INIT_CWD/assets/js/src/newsletter_editor/behaviors/tinymce_icons.js
|
|
|
|
echo "import tinymce from 'tinymce/tinymce';
|
|
" >> $INIT_CWD/assets/js/src/newsletter_editor/behaviors/tinymce_icons.js
|
|
|
|
cat $INIT_CWD/node_modules/tinymce/icons/default/icons.min.js >> $INIT_CWD/assets/js/src/newsletter_editor/behaviors/tinymce_icons.js
|
|
|
|
# Replace deprecated jQuery methods in the spectrum-colorpicker dependency
|
|
# Remove this when a patch is included in a package update
|
|
git apply $INIT_CWD/tasks/patches/spectrum-replace-jquery-deprecated.patch || true
|
|
|
|
# Replace deprecated jQuery methods in the parsley dependency
|
|
# Remove this when a patch is included in a package update.
|
|
# Note: deferred.pipe() fix is not implemented yet, see https://github.com/guillaumepotier/Parsley.js/pull/1347
|
|
sed -i -- "s/_focusedField\.focus()/_focusedField\.trigger('focus')/g" node_modules/parsleyjs/dist/parsley*.js
|
|
|
|
# Fix strict mode issues in Backbone.Supermodel
|
|
sed -i -- "s/ lastKeyIndex = keyPath.length-1;/ var lastKeyIndex = keyPath.length-1;/g" node_modules/backbone.supermodel/build/backbone.supermodel.js
|
|
sed -i -- "s/ key = keyPath\[i\];/ var key = keyPath\[i\];/g" node_modules/backbone.supermodel/build/backbone.supermodel.js
|
|
|
|
# Remove older versions of @types/react, @types/react-dom used in @wordpress/element
|
|
# We can remove this fix after @wordpress/element updates @types/react and @types/react-dom to version 17
|
|
rm -rf node_modules/@wordpress/element/node_modules/@types/react
|
|
rm -rf node_modules/@wordpress/element/node_modules/@types/react-dom
|