mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 14:23:58 +00:00

PR-URL: https://github.com/nodejs/node/pull/28853 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
8 lines
205 B
Bash
Executable File
8 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
node . install --save --save-dev $1@$2 &&\
|
|
node scripts/gen-dev-ignores.js &&\
|
|
git add package.json package-lock.json &&\
|
|
git commit -m"$1@$2" &&\
|
|
node . repo $1 &&\
|
|
git commit --amend
|