rsbuild-exec
v0.0.2
Published
Execute shell commands during your rsbuild
Downloads
139
Readme
rsbuild-exec
Execute shell commands during your rsbuild
Usage
// rslib.config.ts
import { pluginRsbuildExec } from 'rsbuild-exec';
export default defineConfig({
plugins: [
pluginRsbuildExec({
// An (optional) title for the command (for logging purposes)
title: 'my-command',
// The command to execute
command: 'echo "Hello, World!"',
// (optional) Exec options
options: {
// (just an example)
env: { CUSTOM_ENV_VAR: 'value' },
},
}),
],
});Developed as part of the tscad project.
