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

2232
node_modules/rollup-plugin-dts/dist/rollup-plugin-dts.cjs generated vendored Executable file

File diff suppressed because it is too large Load Diff

31
node_modules/rollup-plugin-dts/dist/rollup-plugin-dts.d.cts generated vendored Executable file
View File

@@ -0,0 +1,31 @@
import { PluginImpl } from 'rollup';
import ts from 'typescript';
interface Options {
/**
* The plugin will by default flag *all* external libraries as `external`
* (unless specified through includeExternal), and thus prevent them from be bundled.
* If you set the `respectExternal` option to `true`, the plugin will not do
* any default classification, but rather use the `external` option as
* configured via rollup.
*/
respectExternal?: boolean;
/**
* A list of external modules to include types from.
*/
includeExternal?: Array<string>;
/**
* In case you want to use TypeScript path-mapping feature, using the
* `baseUrl` and `paths` properties, you can pass in `compilerOptions`.
*/
compilerOptions?: ts.CompilerOptions;
/**
* Path to tsconfig.json, by default, will try to load 'tsconfig.json'
*/
tsconfig?: string;
}
declare const plugin: PluginImpl<Options>;
export { plugin as default, plugin as dts };
export type { Options };

31
node_modules/rollup-plugin-dts/dist/rollup-plugin-dts.d.mts generated vendored Executable file
View File

@@ -0,0 +1,31 @@
import { PluginImpl } from 'rollup';
import ts from 'typescript';
interface Options {
/**
* The plugin will by default flag *all* external libraries as `external`
* (unless specified through includeExternal), and thus prevent them from be bundled.
* If you set the `respectExternal` option to `true`, the plugin will not do
* any default classification, but rather use the `external` option as
* configured via rollup.
*/
respectExternal?: boolean;
/**
* A list of external modules to include types from.
*/
includeExternal?: Array<string>;
/**
* In case you want to use TypeScript path-mapping feature, using the
* `baseUrl` and `paths` properties, you can pass in `compilerOptions`.
*/
compilerOptions?: ts.CompilerOptions;
/**
* Path to tsconfig.json, by default, will try to load 'tsconfig.json'
*/
tsconfig?: string;
}
declare const plugin: PluginImpl<Options>;
export { plugin as default, plugin as dts };
export type { Options };

2207
node_modules/rollup-plugin-dts/dist/rollup-plugin-dts.mjs generated vendored Executable file

File diff suppressed because it is too large Load Diff