Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

56
vendor/spatie/ignition/node_modules/maxmin/readme.md generated vendored Executable file
View File

@@ -0,0 +1,56 @@
# maxmin [![Build Status](https://travis-ci.org/sindresorhus/maxmin.svg?branch=master)](https://travis-ci.org/sindresorhus/maxmin)
> Get a pretty output of the original, minified, gzipped size of a string or buffer
![](screenshot.png)
Useful for logging the difference between original and minified file in e.g. a build-system.
## Install
```
$ npm install --save maxmin
```
## Usage
```js
const maxmin = require('maxmin');
const max = 'function smoothRangeRandom(min,max){var num=Math.floor(Math.random()*(max-min+1)+min);return this.prev=num===this.prev?++num:num};';
const min = '(function(b,c){var a=Math.floor(Math.random()*(c-b+1)+b);return this.a=a===this.a?++a:a})()';
console.log(maxmin(max, min, true));
//=> '130 B → 91 B → 53 B (gzip)'
```
## API
### maxmin(max, min, [useGzip])
#### max
Type: `string`, `buffer`, `number`
Original string or its size in bytes.
#### min
Type: `string`, `buffer`, `number`
Minified string or its size in bytes.
#### useGzip
Type: `boolean`
Default: `false`
Show gzipped size of `min`. Pretty slow. Not shown when `min` is a `number`.
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)