1
0
forked from dyf/APP

增加晶全app静态页面

This commit is contained in:
微微一笑
2025-07-05 14:49:26 +08:00
parent 194035cf79
commit aede64dacd
2323 changed files with 524101 additions and 0 deletions

67
node_modules/cordova-sqlite-storage/bin/test.ps1 generated vendored Normal file
View File

@ -0,0 +1,67 @@
# Automated cordova tests. Installs the correct cordova platform,
# installs the plugin, installs the test app, and then runs it on
# a device or emulator.
#
# usage: .\bin\test.ps1 [android|ios|windows|wp8]
#
# N.B. if you functionally change this script you _must_ change .\bin\test.sh too.
#
# STATUS: UNSUPPORTED
#
# A known issue is that this script needs old coffeescript@1 or coffee-script@1
# to be installed globally while the package script is using locally installed
# version of coffeescript@1.
#
# It is recommended to use the package scripts with npm or yarn tool instead
# of this script.
#
param([string]$platform)
if (! $platform) {
echo "usage: .\bin\test.sh [android|ios|windows|wp8]"
exit 1
}
if (! (get-command coffee) ) {
echo "you need coffeescript. please install with:"
echo "npm install -g coffee-script"
exit 1
}
if (! (get-command cordova) ) {
echo "you need cordova. please install with:"
echo "npm install -g cordova"
exit 1
}
pushd spec
if (!$?) { # run from the bin/ directory
echo "re-pushing"
pushd ../spec
}
try {
# compile coffeescript
coffee --no-header -cl -o ../www ../SQLitePlugin.coffee.md
if (!$?) {
echo "coffeescript compilation failed"
exit 1
}
echo "compiled coffeescript to javascript"
# move everything to a temp folder to avoid infinite recursion errors
if (test-path ../.plugin) {
rm -force -recurse ../.plugin -ErrorAction ignore
}
mkdir -ErrorAction ignore ../.plugin | out-null
cp -recurse ../scripts, ../src, ../package.json, ../plugin.xml, ../www ../.plugin
# update the plugin, run the test app
cordova platform add $platform
cordova plugin rm com.phonegap.plugins.sqlite
cordova plugin add ../.plugin
cordova run $platform
} finally {
popd
}

66
node_modules/cordova-sqlite-storage/bin/test.sh generated vendored Normal file
View File

@ -0,0 +1,66 @@
#!/bin/bash
#
# Automated cordova tests. Installs the correct cordova platform,
# installs the plugin, installs the test app, and then runs it on
# a device or emulator.
#
# usage: ./bin/test.sh [android|ios]
#
# N.B. if you functionally change this script you _must_ change .\bin\test.sh too.
#
# STATUS: UNSUPPORTED
#
# A known issue is that this script needs old coffeescript@1 or coffee-script@1
# to be installed globally while the package script is using locally installed
# version of coffeescript@1.
#
# It is recommended to use the package scripts with npm or yarn tool instead
# of this script.
#
platform=$1
if [[ -z $platform ]]; then
echo "usage: ./bin/test.sh [android|ios]"
exit 1
fi
if [[ ! -x $(which coffee) ]]; then
echo "you need coffeescript. please install with:"
echo "npm install -g coffee-script"
exit 1
fi
if [[ ! -x $(which cordova) ]]; then
echo "you need cordova. please install with:"
echo "npm install -g cordova"
exit 1
fi
cd spec
if [[ $? != 0 ]]; then # run from the bin/ directory
cd ../spec
fi
# compile coffeescript
coffee --no-header -cl -o ../www ../SQLitePlugin.coffee.md
if [[ $? != 0 ]]; then
echo "coffeescript compilation failed"
exit 1
fi
echo "compiled coffeescript to javascript"
# move everything to a temp folder to avoid infinite recursion errors
rm -fr myplugin
mkdir -p myplugin
cp -r ../scripts ../src ../plugin.xml ../package.json ../www myplugin
# cleanup old test
rm -fr plugins platforms
# update the plugin, run the test app
cordova platform add $platform
#cordova plugin rm com.brodysoft.sqlitePlugin
cordova plugin add myplugin
cordova run $platform