初始化项目,添加 favicon.ico、screenshot.png 等静态资源文件,以及 Vue、TailwindCSS 等依赖项。配置了 Vite 和 PostCSS,并生成了基本的项目结构。
17 lines
407 B
Bash
17 lines
407 B
Bash
#!/bin/sh
|
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
|
|
case `uname` in
|
|
*CYGWIN*|*MINGW*|*MSYS*)
|
|
if command -v cygpath > /dev/null 2>&1; then
|
|
basedir=`cygpath -w "$basedir"`
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
if [ -x "$basedir/node" ]; then
|
|
exec "$basedir/node" "$basedir/../autoprefixer/bin/autoprefixer" "$@"
|
|
else
|
|
exec node "$basedir/../autoprefixer/bin/autoprefixer" "$@"
|
|
fi
|