mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Script for updating to latest versions.
This commit is contained in:
15
scripts/update-versions
Executable file
15
scripts/update-versions
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash -eux
|
||||
|
||||
cd $(dirname $0)/..
|
||||
|
||||
npm i $(node -p 'Object.keys(require("./package.json").dependencies).map(d => d + "@latest").join(" ")')
|
||||
npm i --save-dev --save-exact @babel/core@latest
|
||||
|
||||
git add package.json
|
||||
git commit -m "Update eligible dependencies to latest versions."
|
||||
|
||||
git rm -f package-lock.json
|
||||
rm -rf node_modules
|
||||
npm i
|
||||
git add package-lock.json
|
||||
git commit -m "Update package-lock.json."
|
||||
Reference in New Issue
Block a user