Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@stencil/utils

ionic-team6.2kMITdeprecated0.0.5TypeScript support: included

@stencil-utils is no longer supported

Dev tools to improve cross platform experiences.

readme

npm

Stencil Utils

This is a simple set of tools that can be executed through a terminal or through function calls.

sd rimraf ./testdir
  • rimraf
    • Provide a directory that should be recursively deleted from the filesystem
    • Example: sd rimraf ./testdir
  • copyDir
    • Recursively copy all contents of one folder into another.
    • Example: sd copyDir ./testdir ./testdir2
  • mkdirp
    • Create a directory and child directories based on path. Same as 'mkdir -p' in *nix systems.
    • Example: sd mkdirp ./testdir/depth1/depth2/depth3
  • concurrent
    • Execute multiple commands concurrently on windows or *nix systems
    • Example: sd concurrent "touch this" "del that"