1.3.1 • Published 2 years ago
cache-sh v1.3.1
cache-sh
cache-sh is a command line tool for caching shell commands. It can be used to cache the results of any shell command, reducing the time it takes to run repetitive tasks.
Changelog
Installation
npm install -g cache-shUsage
Here are some examples of how you can use cache-sh with prisma generate and
tsc.
Prisma Generate
cache-sh -i "{./prisma/schema.prisma,node_modules/**/.prisma/client/**/*.*}" \
pnpm prisma generateIn this example cache-sh will check if the prisma/schema.prisma file AND the
generated .prisma/client has changed and exists, since the last time
prisma generate was run.
If it hasn't, cache-sh will skip running the command and use the cached result
instead.
TypeScript Compilation
cache-sh -i "{src/**/*,dist/**/*}" tscIn this example, cache-sh will check if any .ts files in the src directory
have changed since the last time tsc was run. If they haven't, cache-sh will
skip running the command and assume you can use what's already there, instead.
Usage
cache-sh [options] -- <command...>
cache-sh [options] <command...>Options
-V, --versionoutput the version number-i, --input <input>glob that's used as input to check whether the existing files need to be updated-C, --config <path>set the config path (default:(pwd)/.cache-sh)-d, --cwd <path>set the current working directory-f, --forceignore the cache the command-c, --clearclear the cache-h, --helpdisplay help for command
Examples:
$ cache-sh -i "{src/**,dist/**}" -- tsc
$ cache-sh -i hi.log -- "sleep 2 && echo "hi" > hi.log"
$ cache-sh -i "{./prisma/schema.prisma,node_modules/**/.prisma/client/**/*.*}"\
-- pnpm prisma generate