Gaunt Sloth Assistant
    Preparing search index...

    Interface GthDevToolsConfig

    Config for GthDevToolkit. Tools are not applied when config is not provided. Only available in code mode.

    interface GthDevToolsConfig {
        run_build?: string;
        run_lint?: string;
        run_single_test?: string;
        run_tests?: string;
    }
    Index

    Properties

    run_build?: string

    Optional shell command to run the build. Not applied when config is not provided.

    run_lint?: string

    Optional shell command to run static analysis (lint). Not applied when config is not provided.

    run_single_test?: string

    Optional shell command to run a single test file. Supports command interpolation with the ${testPath} placeholder. Example: "npm test -- ${testPath}" or "jest ${testPath}" Example: "npm test" - the test will simply be appended Not applied when config is not provided.

    run_tests?: string

    Optional shell command to run tests. Not applied when config is not provided.