npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

update-them-all

v1.2.0

Published

A package to update Angular, dependencies, and devDependencies

Downloads

62

Readme

update-them-all - Keep your Angular project up to date

Quality Gate Status Vulnerabilities Security Rating Coverage Socket Badgecodecov

Description

update-them-all is a convenient command-line tool and npm package designed to help you easily update all your npm dependencies, including Angular CLI and Angular Core, in your project. The package automatically stages and commits changes for each updated package or group of packages, providing a clean commit history and making it simple to track updates.

Features:

  • Automatically updates Angular CLI and Angular Core in your project.
  • Updates all dependencies and devDependencies listed in your package.json file.
  • Attempts to update multiple packages simultaneously when possible, falling back to updating one at a time if necessary.
  • Stages and commits changes using Git after each successful package update, including a relevant commit message.
  • Runs npm audit fix at the end of the update process to address any potential security vulnerabilities.

Usage:

To use update-them-all as a command-line tool, simply run the following command in your project directory:

npm install update-them-all --save-dev
npx update-them-all

Alternatively, you can install the package globally and run the command:

npm install -g update-them-all
update-them-all

Custom Configuration

The application provides an option for custom configuration settings to better suit your project requirements. You can achieve this by creating a configuration file in the root directory of your project.

Steps to create a custom configuration:

  1. Create a new file named update-config.json at the root directory of your project.
  2. In this file, add your custom settings. Here is an example of the content you can include:
{
  "keepAngularMajorVersion": true,
  "removeVersioningSymbols": false,
  "ignoreDependencies": [],
  "ignoreDevDependencies": [],
  "autoCommitDuringUpdate": false
}

Explanation of configuration options:

  • keepAngularMajorVersion: When set to true, the application will maintain the major version of Angular in your project. It will still update minor and patch versions. By default, this is set to true.

  • removeVersioningSymbols: If this is set to true, the application will remove any symbols (like ^ and ~) that indicate a version range in your package.json file. This means that npm will install the exact version specified, rather than the latest version that matches the specified range. The default value is false.

  • ignoreDependencies: This is an array that you can use to list specific dependencies that you don't want the application to update. By default, this array is empty, meaning the application will attempt to update all dependencies.

  • ignoreDevDependencies: This is an array that you can use to list specific devDependencies that you don't want the application to update. By default, this array is empty, meaning the application will attempt to update all devDependencies.

Recommendation:

Create a new branch like "update date[xy]" and then run the script

npx update-them-all

The branch must be clean

How does it work?

The first step is an update of Angular

ng update @angular/cli @angular/core

Then try to update all dependancys and DevDependancys as oneliner with

ng update [x] [y] [z] [...]

If the step does not work, then ng update is performed per dependency.

The last step is

npm audit fix

between each step a git Commit is done, because "ng update" needs a clean branch. With update-them-all, you can keep your npm dependencies up-to-date in a streamlined, organized, and efficient manner.