░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/moodle/public/lib/editor/tiny/plugins/html/build
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: build.sh
#!/usr/bin/env bash SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd "$SCRIPTPATH" # Install codemirror, rollup, and any codemirror plugins we want to use. # Note: We don't want to put these into the packages.json because we want to fetch the latest version when we run. echo "Installing codemirror and rollup" npm install --no-save \ codemirror \ @codemirror/lang-javascript \ @codemirror/lang-html \ @codemirror/lang-xml \ rollup \ @rollup/plugin-node-resolve # Create the rollup. npx rollup \ ./codemirror.mjs \ -f esm \ -o ../amd/src/codemirror-lazy.js \ -p @rollup/plugin-node-resolve # Next install js-beautify echo "Installing js-beautify" API_URL='https://api.github.com/repos/beautifier/js-beautify/releases/latest' # Get the .zip download URL ZIP_URL=$(curl -s $API_URL | jq -r ".zipball_url") # Download the latest release curl -L -o latest_release.zip $ZIP_URL # Create a temporary directory TEMP_DIR=$(mktemp -d) # Extract the .zip file to the temporary directory. unzip -q latest_release.zip -d $TEMP_DIR # Find the subdirectory that starts with "beautify" SUB_DIR=$(find $TEMP_DIR -type d -name "beautifier*beautify*" | head -n 1) # Copy the js-beautify files to the correct location. cp -v $SUB_DIR/js/lib/beautify*.js ../amd/src/beautify # Copy the License file to the correct location. cp -v $SUB_DIR/LICENSE ../amd/src/beautify/LICENSE # Remove the temporary directory, node_modules directory and the js-beautify zip. rm -rf $TEMP_DIR packages=($(npm list --json | jq -r '.dependencies | to_entries[] | select(.key | startswith("codemirror") or startswith("@codemirror")) | .key')) for package in "${packages[@]}" do version=`npm --json ls $package | jq -r '.dependencies."'$package'".version'` echo "Version of $package: $version" done echo 'Beautify version:' $(curl -s $API_URL | jq -r '.tag_name') echo "Node version: $(node -v)" rm -rf node_modules rm latest_release.zip
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 .gitignore
GITIGNORE
13 B
2026-02-11 01:44
EDIT
📄 build.sh
SH
1.9 KB
2026-02-11 01:44
EDIT
📄 codemirror.mjs
MJS
1.2 KB
2026-02-11 01:44
EDIT
📄 package.json
JSON
221 B
2026-02-11 01:44
EDIT
📄 rollup.config.mjs
MJS
204 B
2026-02-11 01:44
EDIT