mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
13 lines
263 B
Bash
13 lines
263 B
Bash
#!/usr/bin/env bash
|
|
|
|
# This script is used to check the umd's ecmascript compatibility.
|
|
# It is intended to be run from the project's root directory.
|
|
|
|
echo "\nStarting checking...\n"
|
|
|
|
es-check es5 umd/es5.js &
|
|
es-check es6 umd/es6.js &
|
|
|
|
wait
|
|
|
|
echo "\nCheck done!" |