PATH: //proc/thread-self/root/opt/alt/alt-nodejs12/root/lib/node_modules/npm
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .licensee.json
↓
X
📄 .mailmap
↓
X
📄 .npmignore
↓
X
📄 .npmrc
↓
X
📄 .travis.yml
↓
X
📄 AUTHORS
↓
X
📄 CHANGELOG.md
↓
X
📄 CONTRIBUTING.md
↓
X
📄 LICENSE
↓
X
📄 Makefile
↓
X
📄 README.md
↓
X
📁 bin/
X
📁 changelogs/
X
📄 configure
↓
X
📁 docs/
X
📁 lib/
X
📄 make.bat
↓
X
📁 man/
X
📁 node_modules/
X
📁 node_modules.bundled/
X
📄 package.json
↓
X
📁 scripts/
X
📁 tap-snapshots/
X
SAVING...
BERHASIL DIUBAH!
EDITING: configure
#!/usr/bin/env bash # set configurations that will be "sticky" on this system, # surviving npm self-updates. CONFIGS=() i=0 # get the location of this file. unset CDPATH CONFFILE=$(cd $(dirname "$0"); pwd -P)/npmrc while [ $# -gt 0 ]; do conf="$1" case $conf in --help) echo "./configure --param=value ..." exit 0 ;; --*) CONFIGS[$i]="${conf:2}" ;; *) CONFIGS[$i]="$conf" ;; esac let i++ shift done for c in "${CONFIGS[@]}"; do echo "$c" >> "$CONFFILE" done
SIMPAN PERUBAHAN