���� 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 : /home/real/node-v13.0.1/tools/ |
#!/usr/bin/env bash # Shell script to update babel-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/babel-eslint mkdir babel-eslint-tmp cd babel-eslint-tmp npm init --yes npm install --global-style --no-bin-links --production --no-package-lock babel-eslint@latest # 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 babel-eslint-tmp/node_modules/babel-eslint node_modules/babel-eslint rm -rf babel-eslint-tmp/