Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jayree/sfdx-plugin-manifest

Package Overview
Dependencies
Maintainers
1
Versions
282
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jayree/sfdx-plugin-manifest

jayree sfdx manifest commands

  • 2.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.2K
increased by60.51%
Maintainers
1
Weekly downloads
 
Created
Source

@jayree/sfdx-plugin-manifest

jayree sfdx manifest commands

sfdx Version test-and-release Downloads/week License

$ sfdx plugins:install @jayree/sfdx-plugin-manifest
$ sfdx jayree:COMMAND
running command...
$ sfdx plugins
@jayree/sfdx-plugin-manifest 2.1.0
$ sfdx help jayree:COMMAND
USAGE
  $ sfdx jayree:COMMAND
...

sfdx jayree:manifest:cleanup

removes those tags from a manifest file that are present in a second manifest file

USAGE
  $ sfdx jayree:manifest:cleanup [-x <filepath>] [-f <filepath>] [--json] [--loglevel 
  trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -f, --file=file                                                                   path to the second 'cleanup'
                                                                                    manifest file

  -x, --manifest=manifest                                                           path to the manifest file

  --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

DESCRIPTION
  Use this command to remove components or metadata types from a manifes file.
  If the 'cleanup' manifest file (--file) doesn't exist, a template file is created, which can then be modified.

EXAMPLE
  $ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml

See code: commands/jayree/manifest/cleanup.ts

sfdx jayree:manifest:generate

generate a complete manifest file form the specified org

USAGE
  $ sfdx jayree:manifest:generate [-q <array>] [-c] [-w] [--includeflowversions] [-f <string>] [-x] [-u <string>] 
  [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

OPTIONS
  -c, --matchcase                                                                   enable 'match case' for the
                                                                                    quickfilter

  -f, --file=file                                                                   write to 'file' instead of stdout

  -q, --quickfilter=quickfilter                                                     csv separated list of metadata type,
                                                                                    member or file names to filter on

  -u, --targetusername=targetusername                                               username or alias for the target
                                                                                    org; overrides default target org

  -w, --matchwholeword                                                              enable 'match whole word' for the
                                                                                    quickfilter

  -x, --excludemanaged                                                              exclude managed packages from output

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

  --includeflowversions                                                             include flow versions as with api
                                                                                    version 43.0

  --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

DESCRIPTION
  Use this command to generate a manifest file based on an existing org.

ALIASES
  $ sfdx jayree:packagexml

EXAMPLES
  $ sfdx jayree:manifest:generate --targetusername myOrg@example.com
  <?xml version='1.0' encoding='UTF-8'?>
  <Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>

See code: commands/jayree/manifest/generate.ts

sfdx jayree:manifest:git:diff

create a manifest and destructiveChanges manifest using 'git diff' data

USAGE
  $ sfdx jayree:manifest:git:diff [-o <string>] [-d] [--json] [--loglevel 
  trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

ARGUMENTS
  REF1  base commit or branch
  REF2  commit or branch to compare to the base commit

OPTIONS
  -d, --destructivechangesonly                                                      create a destructiveChanges manifest
                                                                                    only (package.xml will be empty)

  -o, --outputdir=outputdir                                                         directory to save the created
                                                                                    manifest files

  --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

DESCRIPTION
  Use this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two 
  git refs.

  You can use all ways to spell <commit> which are valid for 'git diff'.
  (See https://git-scm.com/docs/git-diff)

EXAMPLES
  $ sfdx jayree:manifest:git:diff <commit> <commit>
  $ sfdx jayree:manifest:git:diff <commit>..<commit>
  uses the changes between two arbitrary <commit>

  $ sfdx jayree:manifest:git:diff <commit>...<commit>
  uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both 
  <commit>.
    
  $ sfdx jayree:manifest:git:diff branchA..branchB
  uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1)

  $ sfdx jayree:manifest:git:diff branchA...branchB
  uses the diff of what is unique in branchB (REF2)

See code: commands/jayree/manifest/git/diff.ts

Keywords

FAQs

Package last updated on 25 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc