New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tartifacts-cli

Package Overview
Dependencies
Maintainers
4
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tartifacts-cli

The tool to create artifacts for your assemblies.

latest
Source
npmnpm
Version
0.9.0
Version published
Weekly downloads
43
437.5%
Maintainers
4
Weekly downloads
 
Created
Source

tartifacts-cli

The tool to create artifacts for your assemblies.

NPM Status Travis Status Windows Status Coverage Status Dependency Status

Install

$ npm install --save-dev tartifacts-cli

Usage

$ tartifacts --help

Options
      --follow-symlinks Follow symlinked files and directories
      --dot-files       Include dotfiles
      --empty-dirs      Include empty directories
      --empty-files     Include empty files
      --watch           Watch mode; signals to stop the process: SIGTERM, SIGINT

Options (config mode)
    -c, --config    Path to config with artifacts info
    -r, --root      Path to root directory for artifacts patterns
    -d, --dest-dir  Path to destination directory for artifacts from config

Options (single mode)
    -p, --patterns  Path to file with includes and excludes patterns of artifact
    -i, --include   Paths to inlcude files of artifact
    -e, --exclude   Paths to exclude files of artifact
    -o, --output    Path to destination artifact file or directory

Examples
    $ tartifacts --config artifacts.json --dest-dir dist/
    $ tartifacts --include "lib/**" --exclude "node_modules/" --output artifact.tar.gz
    $ tartifacts --patterns ./patterns.txt --output=artifact.tar.gz

Patterns

You can write patterns to file.

Use ! prefix for exclude and # for comments.

Example:

# include `sources`
sources/**

# exclude `sources/exlib`
!sources/exlib/*.{js,css}

# override previous exclude pattern,
# and include files with `es6.js` extension
sources/exlib/*.{es6.js}

Read more about patterns in glob package.

License

MIT © Andrew Abramov

Keywords

artifacts

FAQs

Package last updated on 22 Jun 2020

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