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

@jtowers/dxpack

v0.0.2

Published

dxpack ============

Downloads

41

Readme

dxpack

Usage

Install as a plugin in the Salesforce CLI.

$ sfdx plugins:install @jtowers/dxpack
$ sfdx dxpack --help

Commands

sfdx dxpack:package:update:push -i <string> [-f <string>] [-s <datetime>] [-w <number>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

push a package update

push a package update

USAGE
  $ sfdx dxpack:package:update:push -i <string> [-f <string>] [-s <datetime>] [-w <number>] [-v <string>] [--apiversion 
  <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -f, --subscriberfilter=subscriberfilter                                           SOQL Where clause to use to include
                                                                                    orgs to upgrade. Uses fields on
                                                                                    PackageSubscriber SObject

  -i, --packageversionid=packageversionid                                           (required) package version to push

  -s, --schedulestarttime=schedulestarttime                                         date and time to schedule the update
                                                                                    for. Leave blank to update
                                                                                    immediately.

  -v, --targetdevhubusername=targetdevhubusername                                   username or alias for the dev hub
                                                                                    org; overrides default dev hub org

  -w, --wait=wait                                                                   date and time to schedule the update
                                                                                    for. Leave blank to update
                                                                                    immediately.

  --apiversion=apiversion                                                           override the api version used for
                                                                                    api requests made by this command

  --json                                                                            format output as json

  --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)  [default: warn] logging level for
                                                                                    this command invocation

EXAMPLES
  $ sfdx dxpack:package:update:push --packageversionid 04t4x0000000001234 -w 20
       Scheduling package upgrade... Package Push Request submitted successfully
       package installs InProgress, sleeping for 15 seconds
       package installs InProgress, sleeping for 15 seconds
       package install Succeeded:
       2 succeeded, 0 Failed
  
  $ sfdx dxpack:package:update:push --packageversionid 04t4x0000000001234 --subscriberfilter "OrgType='Sandbox'" -w 20
       Scheduling package upgrade... Package Push Request submitted successfully
       package installs InProgress, sleeping for 15 seconds
       package installs InProgress, sleeping for 15 seconds
       package install Succeeded:
       1 succeeded, 0 Failed
  
  $ sfdx dxpack:package:update:push --packageversionid 04t4x0000000001234 --schedulestarttime "2021-02-14 10:00"
       Scheduling package upgrade... Package Push Request submitted successfully
       Package Push Request created. Check the status by running sfdx packageutils:package:update:status -i 
  0DV4x000000kA5j

See code: lib/commands/dxpack/package/update/push.js

sfdx dxpack:package:update:status -i <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

check the status of the specified push request

check the status of the specified push request

USAGE
  $ sfdx dxpack:package:update:status -i <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel 
  trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -i, --pushrequestid=pushrequestid                                                 (required) Id of the PackageRequest
                                                                                    record to check for

  -v, --targetdevhubusername=targetdevhubusername                                   username or alias for the dev hub
                                                                                    org; overrides default dev hub org

  --apiversion=apiversion                                                           override the api version used for
                                                                                    api requests made by this command

  --json                                                                            format output as json

  --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)  [default: warn] logging level for
                                                                                    this command invocation

EXAMPLE
  $ sfdx dxpack:package:update:status -i 0DV4x0000000001234
       ID                  STATUS     PACKAGE VERSION ID  DURATION SECONDS  SCHEDULED START TIME          START TIME     
                 END TIME
       ──────────────────  ─────────  ──────────────────  ────────────────  ────────────────────────────  
  ────────────────────────────  ────────────────────────────
       0DV4x0000000001234  Succeeded  04t4x0000000001234  18                2021-02-13T19:30:00.000+0000  
  2021-02-13T19:30:01.049+0000  2021-02-13T19:30:19.832+0000

See code: lib/commands/dxpack/package/update/status.js