You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
374 B
9 lines
374 B
#!/usr/bin/env bash
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
OUTPUT="$BASEDIR/../vendor/javascript"
|
|
cd $OUTPUT
|
|
curl -sLO https://github.com/saadeghi/daisyui/releases/latest/download/daisyui.mjs
|
|
curl -sLO https://github.com/saadeghi/daisyui/releases/latest/download/daisyui-theme.mjs
|
|
VERSION=$(grep "var version" daisyui.mjs | cut -d= -f2 | cut -d'"' -f2)
|
|
echo "Daisyui version = $VERSION"
|