���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/home/real/node-v13.0.1/tools/ |
#!/usr/bin/env bash # Shell script to update ESLint in the source tree to the latest release. # Depends on npm, npx, and node being in $PATH. # This script must be be in the tools directory when it runs because it uses # $BASH_SOURCE[0] to determine directories to work in. cd "$( dirname "${BASH_SOURCE[0]}" )" rm -rf node_modules/eslint mkdir eslint-tmp cd eslint-tmp npm init --yes npm install --global-style --no-bin-links --production --no-package-lock eslint@latest cd node_modules/eslint npm install --no-bin-links --production --no-package-lock eslint-plugin-markdown@latest cd ../.. # Use dmn to remove some unneeded files. npx [email protected] -f clean # Use removeNPMAbsolutePaths to remove unused data in package.json. # This avoids churn as absolute paths can change from one dev to another. npx [email protected] . cd .. mv eslint-tmp/node_modules/eslint node_modules/eslint rm -rf eslint-tmp/