mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
5842366ae8
PR-URL: https://github.com/nodejs/node/pull/21592 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
8 lines
199 B
Bash
Executable File
8 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
node . install --save $1@$2 &&\
|
|
node scripts/gen-dev-ignores.js &&\
|
|
git add node_modules package.json package-lock.json &&\
|
|
git commit -m"$1@$2" &&\
|
|
node . repo $1 &&\
|
|
git commit --amend
|