npm run *

built-in
-262.8% Savings
11 Commands
-6707 Tokens saved
2 Tests

Install

tokf install 1d6acf38203ca501c950f08b136e0d2df961ba86abdbee0bae143f56b496b0b0
Safety checks passed

Filter definition

command = "npm run *"
skip = [
  "^> .+@",
  "^\\s*npm warn",
  "^\\s*npm notice",
  "^\\s*npm WARN",
  "^[⸩⸨]",
]

[on_success]
output = "{output}"

[on_failure]
tail = 20

Examples

script failure shows tail ~45 tokens → ~40 tokens (11% saved)
Raw output
> myapp@1.0.0 test
> jest

FAIL src/app.test.js
  ● Test suite failed to run

    Cannot find module './missing' from 'src/app.test.js'

npm ERR! code ELIFECYCLE
npm ERR! errno 1
Filtered output
> jest

FAIL src/app.test.js
  ● Test suite failed to run

    Cannot find module './missing' from 'src/app.test.js'

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm run strips package header and noise ~48 tokens → ~43 tokens (10% saved)
Raw output
> myapp@1.0.0 build
> webpack --mode production

assets by status 142 KiB [emitted]
  asset bundle.js 142 KiB [emitted] [minimized] (name: main)
webpack 5.75.0 compiled successfully in 2340 ms
Filtered output
> webpack --mode production

assets by status 142 KiB [emitted]
  asset bundle.js 142 KiB [emitted] [minimized] (name: main)
webpack 5.75.0 compiled successfully in 2340 ms
Warning: Community filters are third-party code. Review the filter definition above before installing it in production environments.
Browse all filters