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

74
node_modules/laravel-mix/src/helpers.js generated vendored Executable file
View File

@@ -0,0 +1,74 @@
/**
* Generic tap function.
* @deprecated
**/
Object.defineProperty(global, 'tap', {
/**
* @template T
* @param {T} val
* @param {(val: T) => void} callback
* @returns {T}
*/
value(val, callback) {
callback(val);
return val;
}
});
/**
* Add tap to arrays.
* @deprecated
**/
if (!Object.prototype.hasOwnProperty.call(Array, 'tap')) {
Object.defineProperty(Array.prototype, 'tap', {
/**
* @param {(arr: self) => void} callback
* @returns {self}
*/
value(callback) {
if (this.length) {
callback(this);
}
return this;
}
});
}
/**
* Add wrap to arrays.
* @deprecated
**/
if (!Object.prototype.hasOwnProperty.call(Array, 'wrap')) {
Object.defineProperty(Array, 'wrap', {
/**
* @template T
* @param {T|T[]} value
* @returns {T[]}
*/
value(value) {
if (Array.isArray(value)) {
return value;
}
return [value];
}
});
}
/**
* Flatten an array.
* @deprecated
**/
Object.defineProperty(global, 'flatten', {
/**
* @template T
* @param {T[]} arr
* @returns {T[]}
*/
value(arr) {
// @ts-ignore
return [].concat.apply([], Object.values(arr));
}
});