@savvy-web/mcp 1.3.2 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/public/content/guides/api-docs-from-api-extractor.md +47 -33
- package/public/content/guides/building-a-github-action.md +2 -2
- package/public/content/guides/choosing-a-builder.md +53 -100
- package/public/content/manifest.json +9980 -116
- package/public/content/packages/bundler/api/function/definebuild.md +18 -0
- package/public/content/packages/bundler/api/function/parseargs.md +18 -0
- package/public/content/packages/bundler/api/function/runbuild.md +18 -0
- package/public/content/packages/bundler/api/interface/buildconfig.md +147 -0
- package/public/content/packages/bundler/api/interface/buildconfiginput.md +153 -0
- package/public/content/packages/bundler/api/interface/buildentryoverride.md +86 -0
- package/public/content/packages/bundler/api/interface/outputconfig.md +34 -0
- package/public/content/packages/bundler/api/interface/parsedargs.md +44 -0
- package/public/content/packages/bundler/api/interface/runoptions.md +150 -0
- package/public/content/packages/bundler/api.md +27 -0
- package/public/content/packages/bundler/overview.md +89 -0
- package/public/content/packages/github-action-builder/api/class/actionymlmissing.md +30 -0
- package/public/content/packages/github-action-builder/api/class/actionymlpatherror.md +48 -0
- package/public/content/packages/github-action-builder/api/class/actionymlschemaerror.md +45 -0
- package/public/content/packages/github-action-builder/api/class/actionymlsyntaxerror.md +57 -0
- package/public/content/packages/github-action-builder/api/class/buildfailed.md +39 -0
- package/public/content/packages/github-action-builder/api/class/bundlefailed.md +39 -0
- package/public/content/packages/github-action-builder/api/class/cleanerror.md +39 -0
- package/public/content/packages/github-action-builder/api/class/configinvalid.md +39 -0
- package/public/content/packages/github-action-builder/api/class/configloadfailed.md +39 -0
- package/public/content/packages/github-action-builder/api/class/confignotfound.md +39 -0
- package/public/content/packages/github-action-builder/api/class/entryfilemissing.md +39 -0
- package/public/content/packages/github-action-builder/api/class/githubaction.md +101 -0
- package/public/content/packages/github-action-builder/api/class/mainentrymissing.md +39 -0
- package/public/content/packages/github-action-builder/api/class/persistlocalerror.md +39 -0
- package/public/content/packages/github-action-builder/api/class/validationfailed.md +48 -0
- package/public/content/packages/github-action-builder/api/class/workerentryinvalidname.md +37 -0
- package/public/content/packages/github-action-builder/api/class/workerentrymissing.md +44 -0
- package/public/content/packages/github-action-builder/api/class/writeerror.md +39 -0
- package/public/content/packages/github-action-builder/api/function/defineconfig.md +68 -0
- package/public/content/packages/github-action-builder/api/interface/buildservice.md +83 -0
- package/public/content/packages/github-action-builder/api/interface/configservice.md +66 -0
- package/public/content/packages/github-action-builder/api/interface/githubactionoptions.md +60 -0
- package/public/content/packages/github-action-builder/api/interface/loadconfigresult.md +44 -0
- package/public/content/packages/github-action-builder/api/interface/persistlocalservice.md +37 -0
- package/public/content/packages/github-action-builder/api/interface/validationservice.md +82 -0
- package/public/content/packages/github-action-builder/api/type/actionymlresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/apperror.md +18 -0
- package/public/content/packages/github-action-builder/api/type/builderror.md +18 -0
- package/public/content/packages/github-action-builder/api/type/buildoptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/buildresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/buildrunneroptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/bundleresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/bundlestats.md +18 -0
- package/public/content/packages/github-action-builder/api/type/config.md +18 -0
- package/public/content/packages/github-action-builder/api/type/configerror.md +18 -0
- package/public/content/packages/github-action-builder/api/type/configinput.md +18 -0
- package/public/content/packages/github-action-builder/api/type/detectedentry.md +18 -0
- package/public/content/packages/github-action-builder/api/type/detectentriesresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/entries.md +18 -0
- package/public/content/packages/github-action-builder/api/type/githubactionbuildresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/loadconfigoptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/persisterror.md +18 -0
- package/public/content/packages/github-action-builder/api/type/persistlocaloptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/persistlocalresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/persistlocalrunneroptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/validateoptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/validationerror.md +20 -0
- package/public/content/packages/github-action-builder/api/type/validationerroritem.md +18 -0
- package/public/content/packages/github-action-builder/api/type/validationoptions.md +18 -0
- package/public/content/packages/github-action-builder/api/type/validationresult.md +18 -0
- package/public/content/packages/github-action-builder/api/type/validationwarning.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/actionymlmissingbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/actionymlpatherrorbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/actionymlresultschema.md +33 -0
- package/public/content/packages/github-action-builder/api/variable/actionymlschemaerrorbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/actionymlsyntaxerrorbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/applayer.md +38 -0
- package/public/content/packages/github-action-builder/api/variable/buildfailedbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/buildlayer.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/buildoptionsschema.md +31 -0
- package/public/content/packages/github-action-builder/api/variable/buildresultschema.md +32 -0
- package/public/content/packages/github-action-builder/api/variable/buildrunneroptionsschema.md +21 -0
- package/public/content/packages/github-action-builder/api/variable/buildservice.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/bundlefailedbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/bundleresultschema.md +27 -0
- package/public/content/packages/github-action-builder/api/variable/bundlestatsschema.md +23 -0
- package/public/content/packages/github-action-builder/api/variable/cleanerrorbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/configinputschema.md +41 -0
- package/public/content/packages/github-action-builder/api/variable/configinvalidbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/configlayer.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/configloadfailedbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/confignotfoundbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/configschema.md +59 -0
- package/public/content/packages/github-action-builder/api/variable/configservice.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/detectedentryschema.md +22 -0
- package/public/content/packages/github-action-builder/api/variable/detectentriesresultschema.md +25 -0
- package/public/content/packages/github-action-builder/api/variable/entriesschema.md +25 -0
- package/public/content/packages/github-action-builder/api/variable/entryfilemissingbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/githubactionbuildresultschema.md +60 -0
- package/public/content/packages/github-action-builder/api/variable/loadconfigoptionsschema.md +21 -0
- package/public/content/packages/github-action-builder/api/variable/mainentrymissingbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/persistlocalerrorbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/persistlocallayer.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/persistlocaloptionsschema.md +28 -0
- package/public/content/packages/github-action-builder/api/variable/persistlocalresultschema.md +25 -0
- package/public/content/packages/github-action-builder/api/variable/persistlocalrunneroptionsschema.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/persistlocalservice.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/validateoptionsschema.md +21 -0
- package/public/content/packages/github-action-builder/api/variable/validationerrorschema.md +23 -0
- package/public/content/packages/github-action-builder/api/variable/validationfailedbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/validationlayer.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/validationoptionsschema.md +24 -0
- package/public/content/packages/github-action-builder/api/variable/validationresultschema.md +32 -0
- package/public/content/packages/github-action-builder/api/variable/validationservice.md +18 -0
- package/public/content/packages/github-action-builder/api/variable/validationwarningschema.md +23 -0
- package/public/content/packages/github-action-builder/api/variable/workerentryinvalidnamebase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/workerentrymissingbase.md +20 -0
- package/public/content/packages/github-action-builder/api/variable/writeerrorbase.md +20 -0
- package/public/content/packages/github-action-builder/api.md +125 -0
- package/public/content/packages/github-action-effects/api/class/actioncache.md +18 -0
- package/public/content/packages/github-action-effects/api/class/actioncacheerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/actionenvironment.md +18 -0
- package/public/content/packages/github-action-effects/api/class/actionenvironmenterror.md +37 -0
- package/public/content/packages/github-action-effects/api/class/actioninputerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/actionlogger.md +18 -0
- package/public/content/packages/github-action-effects/api/class/actionoutputerror.md +37 -0
- package/public/content/packages/github-action-effects/api/class/actionoutputs.md +18 -0
- package/public/content/packages/github-action-effects/api/class/actionstate.md +18 -0
- package/public/content/packages/github-action-effects/api/class/actionstateerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/artifact.md +18 -0
- package/public/content/packages/github-action-effects/api/class/artifacterror.md +53 -0
- package/public/content/packages/github-action-effects/api/class/attest.md +18 -0
- package/public/content/packages/github-action-effects/api/class/attesterror.md +42 -0
- package/public/content/packages/github-action-effects/api/class/blobstore.md +18 -0
- package/public/content/packages/github-action-effects/api/class/blobstoreerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/changesetanalyzer.md +18 -0
- package/public/content/packages/github-action-effects/api/class/changeseterror.md +37 -0
- package/public/content/packages/github-action-effects/api/class/checkrun.md +18 -0
- package/public/content/packages/github-action-effects/api/class/checkrunerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/commandrunner.md +18 -0
- package/public/content/packages/github-action-effects/api/class/commandrunnererror.md +73 -0
- package/public/content/packages/github-action-effects/api/class/configloader.md +18 -0
- package/public/content/packages/github-action-effects/api/class/configloadererror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/dryrun.md +18 -0
- package/public/content/packages/github-action-effects/api/class/gitbranch.md +18 -0
- package/public/content/packages/github-action-effects/api/class/gitbrancherror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/gitcommit.md +18 -0
- package/public/content/packages/github-action-effects/api/class/gitcommiterror.md +37 -0
- package/public/content/packages/github-action-effects/api/class/githubapp.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubapperror.md +37 -0
- package/public/content/packages/github-action-effects/api/class/githubartifactmetadata.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubartifactmetadataerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/githubclient.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubclienterror.md +60 -0
- package/public/content/packages/github-action-effects/api/class/githubcommit.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubcommiterror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/githubcontent.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubcontenterror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/githubgraphql.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubgraphqlerror.md +48 -0
- package/public/content/packages/github-action-effects/api/class/githubissue.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubissueerror.md +51 -0
- package/public/content/packages/github-action-effects/api/class/githubrelease.md +18 -0
- package/public/content/packages/github-action-effects/api/class/githubreleaseerror.md +51 -0
- package/public/content/packages/github-action-effects/api/class/gittag.md +18 -0
- package/public/content/packages/github-action-effects/api/class/gittagerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/glob.md +18 -0
- package/public/content/packages/github-action-effects/api/class/globerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/intotostatement.md +18 -0
- package/public/content/packages/github-action-effects/api/class/intotosubject.md +18 -0
- package/public/content/packages/github-action-effects/api/class/ioerror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/npmregistry.md +18 -0
- package/public/content/packages/github-action-effects/api/class/npmregistryerror.md +50 -0
- package/public/content/packages/github-action-effects/api/class/octokitauthapp.md +18 -0
- package/public/content/packages/github-action-effects/api/class/oidctokenerror.md +42 -0
- package/public/content/packages/github-action-effects/api/class/oidctokenissuer.md +18 -0
- package/public/content/packages/github-action-effects/api/class/packagemanageradapter.md +18 -0
- package/public/content/packages/github-action-effects/api/class/packagemanagererror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/packagepublish.md +18 -0
- package/public/content/packages/github-action-effects/api/class/packagepublisherror.md +68 -0
- package/public/content/packages/github-action-effects/api/class/pullrequest.md +18 -0
- package/public/content/packages/github-action-effects/api/class/pullrequestcomment.md +18 -0
- package/public/content/packages/github-action-effects/api/class/pullrequestcommenterror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/pullrequesterror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/ratelimiter.md +18 -0
- package/public/content/packages/github-action-effects/api/class/ratelimiterror.md +51 -0
- package/public/content/packages/github-action-effects/api/class/runtimeenvironmenterror.md +37 -0
- package/public/content/packages/github-action-effects/api/class/sbom.md +18 -0
- package/public/content/packages/github-action-effects/api/class/sbomerror.md +42 -0
- package/public/content/packages/github-action-effects/api/class/semverresolvererror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/sigstorebundle.md +18 -0
- package/public/content/packages/github-action-effects/api/class/sigstoresigner.md +18 -0
- package/public/content/packages/github-action-effects/api/class/sigstoresignererror.md +42 -0
- package/public/content/packages/github-action-effects/api/class/slsaerror.md +42 -0
- package/public/content/packages/github-action-effects/api/class/tokenpermissionchecker.md +18 -0
- package/public/content/packages/github-action-effects/api/class/tokenpermissionerror.md +58 -0
- package/public/content/packages/github-action-effects/api/class/toolinstaller.md +18 -0
- package/public/content/packages/github-action-effects/api/class/toolinstallererror.md +58 -0
- package/public/content/packages/github-action-effects/api/class/workflowdispatch.md +18 -0
- package/public/content/packages/github-action-effects/api/class/workflowdispatcherror.md +44 -0
- package/public/content/packages/github-action-effects/api/class/workspacedetector.md +18 -0
- package/public/content/packages/github-action-effects/api/class/workspacedetectorerror.md +35 -0
- package/public/content/packages/github-action-effects/api/function/attesttestfulllayer.md +19 -0
- package/public/content/packages/github-action-effects/api/function/buildslsaprovenancepredicate.md +23 -0
- package/public/content/packages/github-action-effects/api/function/buildstatement.md +29 -0
- package/public/content/packages/github-action-effects/api/function/decodejwtclaims.md +18 -0
- package/public/content/packages/github-action-effects/api/function/dryrunlive.md +18 -0
- package/public/content/packages/github-action-effects/api/function/generatepackageviewurl.md +27 -0
- package/public/content/packages/github-action-effects/api/function/getregistrydisplayname.md +26 -0
- package/public/content/packages/github-action-effects/api/function/getregistrytype.md +26 -0
- package/public/content/packages/github-action-effects/api/function/iscustomregistry.md +26 -0
- package/public/content/packages/github-action-effects/api/function/isgithubpackagesregistry.md +26 -0
- package/public/content/packages/github-action-effects/api/function/isjsrregistry.md +26 -0
- package/public/content/packages/github-action-effects/api/function/isnpmregistry.md +26 -0
- package/public/content/packages/github-action-effects/api/function/makeattestteststate.md +18 -0
- package/public/content/packages/github-action-effects/api/function/makesbomteststate.md +18 -0
- package/public/content/packages/github-action-effects/api/function/makesigstoresignerlive.md +18 -0
- package/public/content/packages/github-action-effects/api/function/npmpurl.md +18 -0
- package/public/content/packages/github-action-effects/api/function/resilienceschedule.md +18 -0
- package/public/content/packages/github-action-effects/api/function/s3blobstorelive.md +18 -0
- package/public/content/packages/github-action-effects/api/function/savetoken.md +18 -0
- package/public/content/packages/github-action-effects/api/function/serializestatement.md +18 -0
- package/public/content/packages/github-action-effects/api/function/subject.md +23 -0
- package/public/content/packages/github-action-effects/api/function/tokenpermissioncheckerlive.md +18 -0
- package/public/content/packages/github-action-effects/api/interface/accumulateresult.md +35 -0
- package/public/content/packages/github-action-effects/api/interface/actioncacheteststate.md +26 -0
- package/public/content/packages/github-action-effects/api/interface/actionloggerteststate.md +59 -0
- package/public/content/packages/github-action-effects/api/interface/actionoutputsteststate.md +56 -0
- package/public/content/packages/github-action-effects/api/interface/actionrunoptions.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/actionstateteststate.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/annotationproperties.md +68 -0
- package/public/content/packages/github-action-effects/api/interface/appauth.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/artifactitem.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/artifactteststate.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/attestationlistentry.md +36 -0
- package/public/content/packages/github-action-effects/api/interface/attestationrecord.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/attestinput.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/attestteststate.md +111 -0
- package/public/content/packages/github-action-effects/api/interface/blobstoreteststate.md +26 -0
- package/public/content/packages/github-action-effects/api/interface/botidentity.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/changesetanalyzerteststate.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/checkrunannotation.md +56 -0
- package/public/content/packages/github-action-effects/api/interface/checkrundata.md +50 -0
- package/public/content/packages/github-action-effects/api/interface/checkrunoutput.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/checkrunrecord.md +62 -0
- package/public/content/packages/github-action-effects/api/interface/checkrunteststate.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/commandresponse.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/commentrecord.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/commitcomparison.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/commitdetail.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/commitfile.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/commitsummary.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/configloaderteststate.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/dispatchrecord.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/downloadoptions.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/dryrunresult.md +60 -0
- package/public/content/packages/github-action-effects/api/interface/dryrunteststate.md +26 -0
- package/public/content/packages/github-action-effects/api/interface/execoptions.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/execoutput.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/findby.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/gitbranchteststate.md +26 -0
- package/public/content/packages/github-action-effects/api/interface/gitcommitteststate.md +51 -0
- package/public/content/packages/github-action-effects/api/interface/githubappteststate.md +54 -0
- package/public/content/packages/github-action-effects/api/interface/githubartifactmetadatateststate.md +36 -0
- package/public/content/packages/github-action-effects/api/interface/githubclientteststate.md +47 -0
- package/public/content/packages/github-action-effects/api/interface/githubcommitteststate.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/githubcontentteststate.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/githubgraphqlteststate.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/githubissueteststate.md +53 -0
- package/public/content/packages/github-action-effects/api/interface/githubreleaseteststate.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/gittagteststate.md +41 -0
- package/public/content/packages/github-action-effects/api/interface/globoptions.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/globteststate.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/hashfilesoptions.md +36 -0
- package/public/content/packages/github-action-effects/api/interface/idempotentpublishinput.md +66 -0
- package/public/content/packages/github-action-effects/api/interface/idempotentpublishresult.md +48 -0
- package/public/content/packages/github-action-effects/api/interface/inflightpackage.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/installoptions.md +36 -0
- package/public/content/packages/github-action-effects/api/interface/issuedata.md +60 -0
- package/public/content/packages/github-action-effects/api/interface/npmregistryteststate.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/oidcclaims.md +98 -0
- package/public/content/packages/github-action-effects/api/interface/packagemanageradapterteststate.md +47 -0
- package/public/content/packages/github-action-effects/api/interface/packagepublishteststate.md +121 -0
- package/public/content/packages/github-action-effects/api/interface/packresult.md +84 -0
- package/public/content/packages/github-action-effects/api/interface/polloptions.md +36 -0
- package/public/content/packages/github-action-effects/api/interface/provenanceattestationinput.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/provisionoptions.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/publishtarballresult.md +28 -0
- package/public/content/packages/github-action-effects/api/interface/pullrequestcommentteststate.md +35 -0
- package/public/content/packages/github-action-effects/api/interface/pullrequestfile.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/pullrequestinfo.md +106 -0
- package/public/content/packages/github-action-effects/api/interface/pullrequestlistoptions.md +60 -0
- package/public/content/packages/github-action-effects/api/interface/pullrequestrecord.md +74 -0
- package/public/content/packages/github-action-effects/api/interface/pullrequestteststate.md +54 -0
- package/public/content/packages/github-action-effects/api/interface/ratelimiterteststate.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/registrytarget.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/releaseasset.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/releasedata.md +62 -0
- package/public/content/packages/github-action-effects/api/interface/report_2.md +76 -0
- package/public/content/packages/github-action-effects/api/interface/resilienceoptions.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/resolveddependency.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/restresponse.md +26 -0
- package/public/content/packages/github-action-effects/api/interface/s3blobstoreconfig.md +62 -0
- package/public/content/packages/github-action-effects/api/interface/sbomattestationinput.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/sbomauthor.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/sbomcontact.md +38 -0
- package/public/content/packages/github-action-effects/api/interface/sbominput.md +88 -0
- package/public/content/packages/github-action-effects/api/interface/sbomsupplier.md +44 -0
- package/public/content/packages/github-action-effects/api/interface/sbomteststate.md +52 -0
- package/public/content/packages/github-action-effects/api/interface/sigstoresignerconfig.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/storagerecordinput.md +68 -0
- package/public/content/packages/github-action-effects/api/interface/tagref.md +34 -0
- package/public/content/packages/github-action-effects/api/interface/tokenpermissioncheckerteststate.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/toolinstallerteststate.md +97 -0
- package/public/content/packages/github-action-effects/api/interface/uploadoptions.md +36 -0
- package/public/content/packages/github-action-effects/api/interface/uploadresult.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/workflowdispatchteststate.md +40 -0
- package/public/content/packages/github-action-effects/api/interface/workflowrunstatus.md +32 -0
- package/public/content/packages/github-action-effects/api/interface/workspacedetectorteststate.md +32 -0
- package/public/content/packages/github-action-effects/api/namespace/step.md +16 -0
- package/public/content/packages/github-action-effects/api/type/actionloglevel.md +16 -0
- package/public/content/packages/github-action-effects/api/type/annotationlevel.md +18 -0
- package/public/content/packages/github-action-effects/api/type/bumptype.md +16 -0
- package/public/content/packages/github-action-effects/api/type/capturedoutput.md +16 -0
- package/public/content/packages/github-action-effects/api/type/changeset.md +16 -0
- package/public/content/packages/github-action-effects/api/type/changesetfile.md +16 -0
- package/public/content/packages/github-action-effects/api/type/checklistitem.md +16 -0
- package/public/content/packages/github-action-effects/api/type/checkrunconclusion.md +18 -0
- package/public/content/packages/github-action-effects/api/type/coreservices.md +18 -0
- package/public/content/packages/github-action-effects/api/type/cyclonedxbom.md +18 -0
- package/public/content/packages/github-action-effects/api/type/extrapermission.md +18 -0
- package/public/content/packages/github-action-effects/api/type/filechange.md +16 -0
- package/public/content/packages/github-action-effects/api/type/githubcontext.md +18 -0
- package/public/content/packages/github-action-effects/api/type/installationtoken.md +18 -0
- package/public/content/packages/github-action-effects/api/type/loglevelinput.md +16 -0
- package/public/content/packages/github-action-effects/api/type/npmpackageinfo.md +16 -0
- package/public/content/packages/github-action-effects/api/type/packagemanagerinfo.md +18 -0
- package/public/content/packages/github-action-effects/api/type/packagemanagername.md +18 -0
- package/public/content/packages/github-action-effects/api/type/permissioncheckresult.md +18 -0
- package/public/content/packages/github-action-effects/api/type/permissiongap.md +18 -0
- package/public/content/packages/github-action-effects/api/type/permissionlevel.md +18 -0
- package/public/content/packages/github-action-effects/api/type/ratelimitstatus.md +18 -0
- package/public/content/packages/github-action-effects/api/type/registrytype.md +18 -0
- package/public/content/packages/github-action-effects/api/type/runnercontext.md +18 -0
- package/public/content/packages/github-action-effects/api/type/status.md +16 -0
- package/public/content/packages/github-action-effects/api/type/treeentry.md +16 -0
- package/public/content/packages/github-action-effects/api/type/webhookpayload.md +18 -0
- package/public/content/packages/github-action-effects/api/type/workspaceinfo.md +16 -0
- package/public/content/packages/github-action-effects/api/type/workspacepackage.md +16 -0
- package/public/content/packages/github-action-effects/api/type/workspacetype.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/action.md +41 -0
- package/public/content/packages/github-action-effects/api/variable/actioncachelive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/actioncachetest.md +29 -0
- package/public/content/packages/github-action-effects/api/variable/actionenvironmentlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/actionenvironmenttest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/actioninput.md +31 -0
- package/public/content/packages/github-action-effects/api/variable/actionloggerlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/actionloggertest.md +29 -0
- package/public/content/packages/github-action-effects/api/variable/actionloglevel.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/actionoutputslive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/actionoutputstest.md +29 -0
- package/public/content/packages/github-action-effects/api/variable/actionsconfigprovider.md +27 -0
- package/public/content/packages/github-action-effects/api/variable/actionslogger.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/actionsruntime.md +36 -0
- package/public/content/packages/github-action-effects/api/variable/actionstatelive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/actionstatetest.md +29 -0
- package/public/content/packages/github-action-effects/api/variable/artifactlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/artifacttest.md +29 -0
- package/public/content/packages/github-action-effects/api/variable/attestlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/attesttest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/automerge.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/blobstoretest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/bumptype.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/capturedoutput.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/changeset.md +25 -0
- package/public/content/packages/github-action-effects/api/variable/changesetanalyzerlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/changesetanalyzertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/changesetfile.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/checklistitem.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/checkrunlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/checkruntest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/commandrunnerlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/commandrunnertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/configloaderlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/configloadertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/cyclonedx_bom.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/dryruntest.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/erroraccumulator.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/extrapermission.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/filechange.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/filechangecontent.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/filechangedeletion.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/gitbranchlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/gitbranchtest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/gitcommitlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/gitcommittest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/github_build_type.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/githubapplive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/githubapptest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/githubartifactmetadatalive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/githubartifactmetadatatest.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/githubblobstorelive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/githubclientlive.md +26 -0
- package/public/content/packages/github-action-effects/api/variable/githubclienttest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/githubcommitlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/githubcommittest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/githubcontentlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/githubcontenttest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/githubcontext.md +35 -0
- package/public/content/packages/github-action-effects/api/variable/githubgraphqllive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/githubgraphqltest.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/githubissuelive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/githubissuetest.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/githubmarkdown.md +45 -0
- package/public/content/packages/github-action-effects/api/variable/githubreleaselive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/githubreleasetest.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/githubtoken.md +27 -0
- package/public/content/packages/github-action-effects/api/variable/gittaglive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/gittagtest.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/globlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/globtest.md +30 -0
- package/public/content/packages/github-action-effects/api/variable/in_toto_payload_type.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/in_toto_statement_v1.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/installationtoken.md +28 -0
- package/public/content/packages/github-action-effects/api/variable/ioutil.md +22 -0
- package/public/content/packages/github-action-effects/api/variable/loglevelinput.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/npmpackageinfo.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/npmregistrylive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/npmregistrytest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/octokitauthapplive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/oidctokenissuerlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/oidctokenissuertest.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/packagemanageradapterlive.md +19 -0
- package/public/content/packages/github-action-effects/api/variable/packagemanageradaptertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/packagemanagerinfo.md +22 -0
- package/public/content/packages/github-action-effects/api/variable/packagemanagername.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/packagepublishlive.md +19 -0
- package/public/content/packages/github-action-effects/api/variable/packagepublishtest.md +27 -0
- package/public/content/packages/github-action-effects/api/variable/pathutils.md +31 -0
- package/public/content/packages/github-action-effects/api/variable/permissioncheckresult.md +31 -0
- package/public/content/packages/github-action-effects/api/variable/permissiongap.md +22 -0
- package/public/content/packages/github-action-effects/api/variable/permissionlevel.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/pullrequestcommentlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/pullrequestcommenttest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/pullrequestlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/pullrequesttest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/ratelimiterlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/ratelimitertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/ratelimitstatus.md +23 -0
- package/public/content/packages/github-action-effects/api/variable/reportbuilder.md +33 -0
- package/public/content/packages/github-action-effects/api/variable/runnercontext.md +25 -0
- package/public/content/packages/github-action-effects/api/variable/sbomlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/sbomtest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/semverresolver.md +30 -0
- package/public/content/packages/github-action-effects/api/variable/sigstore_bundle_v0_3_media_type.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/sigstore_oidc_audience.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/sigstoresignerlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/sigstoresignertest.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/slsa_provenance_v1.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/spdx_v2_3.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/status.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/tokenpermissioncheckertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/toolinstallerlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/toolinstallertest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/treeentry.md +26 -0
- package/public/content/packages/github-action-effects/api/variable/treeentrycontent.md +22 -0
- package/public/content/packages/github-action-effects/api/variable/treeentrydeletion.md +22 -0
- package/public/content/packages/github-action-effects/api/variable/webhookpayload.md +51 -0
- package/public/content/packages/github-action-effects/api/variable/workflowdispatchlive.md +16 -0
- package/public/content/packages/github-action-effects/api/variable/workflowdispatchtest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/workspacedetectorlive.md +18 -0
- package/public/content/packages/github-action-effects/api/variable/workspacedetectortest.md +21 -0
- package/public/content/packages/github-action-effects/api/variable/workspaceinfo.md +22 -0
- package/public/content/packages/github-action-effects/api/variable/workspacepackage.md +24 -0
- package/public/content/packages/github-action-effects/api/variable/workspacetype.md +18 -0
- package/public/content/packages/github-action-effects/api.md +386 -0
- package/public/content/packages/rspress-builder/api/function/defineplugin.md +18 -0
- package/public/content/packages/rspress-builder/api/interface/rspressbundleoptions.md +28 -0
- package/public/content/packages/rspress-builder/api/interface/rspresspluginoptions.md +76 -0
- package/public/content/packages/rspress-builder/api.md +21 -0
- package/public/content/packages/silk-effects/api/class/analyzedworkspace.md +121 -0
- package/public/content/packages/silk-effects/api/class/biomeschemasync.md +33 -0
- package/public/content/packages/silk-effects/api/class/biomesyncerror.md +41 -0
- package/public/content/packages/silk-effects/api/class/changesetconfig.md +28 -0
- package/public/content/packages/silk-effects/api/class/changesetconfigerror.md +41 -0
- package/public/content/packages/silk-effects/api/class/changesetconfigreader.md +33 -0
- package/public/content/packages/silk-effects/api/class/configdiscovery.md +33 -0
- package/public/content/packages/silk-effects/api/class/confignotfounderror.md +41 -0
- package/public/content/packages/silk-effects/api/class/managedsection.md +18 -0
- package/public/content/packages/silk-effects/api/class/resolvedtool.md +62 -0
- package/public/content/packages/silk-effects/api/class/sectionblock.md +95 -0
- package/public/content/packages/silk-effects/api/class/sectiondefinition.md +104 -0
- package/public/content/packages/silk-effects/api/class/sectionparseerror.md +41 -0
- package/public/content/packages/silk-effects/api/class/sectionvalidationerror.md +41 -0
- package/public/content/packages/silk-effects/api/class/sectionwriteerror.md +41 -0
- package/public/content/packages/silk-effects/api/class/shellsectiondefinition.md +56 -0
- package/public/content/packages/silk-effects/api/class/silkpublishability.md +46 -0
- package/public/content/packages/silk-effects/api/class/silkpublishconfig.md +18 -0
- package/public/content/packages/silk-effects/api/class/silkworkspaceanalyzer.md +33 -0
- package/public/content/packages/silk-effects/api/class/tagformaterror.md +48 -0
- package/public/content/packages/silk-effects/api/class/tagstrategy.md +32 -0
- package/public/content/packages/silk-effects/api/class/toolcommand.md +76 -0
- package/public/content/packages/silk-effects/api/class/tooldefinition.md +73 -0
- package/public/content/packages/silk-effects/api/class/tooldiscovery.md +35 -0
- package/public/content/packages/silk-effects/api/class/toolnotfounderror.md +39 -0
- package/public/content/packages/silk-effects/api/class/toolresolutionerror.md +39 -0
- package/public/content/packages/silk-effects/api/class/toolversionmismatcherror.md +46 -0
- package/public/content/packages/silk-effects/api/class/versioningdetectionerror.md +34 -0
- package/public/content/packages/silk-effects/api/class/versioningstrategy.md +34 -0
- package/public/content/packages/silk-effects/api/class/workspaceanalysis.md +94 -0
- package/public/content/packages/silk-effects/api/class/workspaceanalysiserror.md +41 -0
- package/public/content/packages/silk-effects/api/function/buildschemaurl.md +26 -0
- package/public/content/packages/silk-effects/api/function/extractsemver.md +26 -0
- package/public/content/packages/silk-effects/api/function/readtargetsbinding.md +23 -0
- package/public/content/packages/silk-effects/api/function/savvybasepreamble.md +22 -0
- package/public/content/packages/silk-effects/api/function/savvyhookshygiene.md +22 -0
- package/public/content/packages/silk-effects/api/function/savvytoolsection.md +37 -0
- package/public/content/packages/silk-effects/api/interface/commitlintplugin.md +26 -0
- package/public/content/packages/silk-effects/api/interface/commitlintuserconfig.md +76 -0
- package/public/content/packages/silk-effects/api/interface/promptconfig.md +38 -0
- package/public/content/packages/silk-effects/api/interface/promptsettings.md +32 -0
- package/public/content/packages/silk-effects/api/interface/publishablepackage.md +44 -0
- package/public/content/packages/silk-effects/api/interface/rawpackagejson.md +44 -0
- package/public/content/packages/silk-effects/api/interface/rawpublishconfig.md +44 -0
- package/public/content/packages/silk-effects/api/interface/rawtargetobject.md +44 -0
- package/public/content/packages/silk-effects/api/interface/rulesconfig.md +26 -0
- package/public/content/packages/silk-effects/api/interface/targetbinding.md +52 -0
- package/public/content/packages/silk-effects/api/interface/targetgroupbinding.md +44 -0
- package/public/content/packages/silk-effects/api/interface/targetsbinding.md +32 -0
- package/public/content/packages/silk-effects/api/namespace/changesets.md +16 -0
- package/public/content/packages/silk-effects/api/namespace/commitlint.md +16 -0
- package/public/content/packages/silk-effects/api/namespace/lint.md +16 -0
- package/public/content/packages/silk-effects/api/namespace/turbo.md +16 -0
- package/public/content/packages/silk-effects/api/type/biomesyncoptions.md +16 -0
- package/public/content/packages/silk-effects/api/type/biomesyncresult.md +16 -0
- package/public/content/packages/silk-effects/api/type/changesetconfigfile.md +16 -0
- package/public/content/packages/silk-effects/api/type/changesetmode.md +18 -0
- package/public/content/packages/silk-effects/api/type/checkresult.md +16 -0
- package/public/content/packages/silk-effects/api/type/checkresultdefinition.md +24 -0
- package/public/content/packages/silk-effects/api/type/commentstyle.md +16 -0
- package/public/content/packages/silk-effects/api/type/configdiscoveryoptions.md +16 -0
- package/public/content/packages/silk-effects/api/type/configlocation.md +16 -0
- package/public/content/packages/silk-effects/api/type/configsource.md +16 -0
- package/public/content/packages/silk-effects/api/type/rawpublishtargets.md +18 -0
- package/public/content/packages/silk-effects/api/type/rawtargetvalue.md +18 -0
- package/public/content/packages/silk-effects/api/type/resolutionpolicy.md +16 -0
- package/public/content/packages/silk-effects/api/type/resolutionpolicydefinition.md +23 -0
- package/public/content/packages/silk-effects/api/type/ruleapplicability.md +18 -0
- package/public/content/packages/silk-effects/api/type/ruleconfigtuple.md +18 -0
- package/public/content/packages/silk-effects/api/type/ruleseverity.md +18 -0
- package/public/content/packages/silk-effects/api/type/sectiondiff.md +16 -0
- package/public/content/packages/silk-effects/api/type/sectiondiffdefinition.md +24 -0
- package/public/content/packages/silk-effects/api/type/silkchangesetconfigfile.md +16 -0
- package/public/content/packages/silk-effects/api/type/sourcerequirement.md +16 -0
- package/public/content/packages/silk-effects/api/type/sourcerequirementdefinition.md +23 -0
- package/public/content/packages/silk-effects/api/type/syncresult.md +16 -0
- package/public/content/packages/silk-effects/api/type/syncresultdefinition.md +24 -0
- package/public/content/packages/silk-effects/api/type/tagstrategytype.md +16 -0
- package/public/content/packages/silk-effects/api/type/toolsource.md +16 -0
- package/public/content/packages/silk-effects/api/type/versionextractor.md +16 -0
- package/public/content/packages/silk-effects/api/type/versionextractordefinition.md +28 -0
- package/public/content/packages/silk-effects/api/type/versioningstrategyresult.md +16 -0
- package/public/content/packages/silk-effects/api/type/versioningstrategytype.md +16 -0
- package/public/content/packages/silk-effects/api/variable/biomeschemasynclive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/biomesyncoptions.md +23 -0
- package/public/content/packages/silk-effects/api/variable/biomesyncresult.md +22 -0
- package/public/content/packages/silk-effects/api/variable/changesetconfigfile.md +36 -0
- package/public/content/packages/silk-effects/api/variable/changesetconfiglive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/changesetconfigreaderlive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/checkresult.md +70 -0
- package/public/content/packages/silk-effects/api/variable/commentstyle.md +18 -0
- package/public/content/packages/silk-effects/api/variable/configdiscoverylive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/configdiscoveryoptions.md +21 -0
- package/public/content/packages/silk-effects/api/variable/configlocation.md +21 -0
- package/public/content/packages/silk-effects/api/variable/configsource.md +18 -0
- package/public/content/packages/silk-effects/api/variable/managedsectionlive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/publishabilitydetectoradaptivelive.md +19 -0
- package/public/content/packages/silk-effects/api/variable/resolutionpolicy.md +92 -0
- package/public/content/packages/silk-effects/api/variable/savvybasesection.md +25 -0
- package/public/content/packages/silk-effects/api/variable/savvyhookssection.md +18 -0
- package/public/content/packages/silk-effects/api/variable/sectiondiff.md +70 -0
- package/public/content/packages/silk-effects/api/variable/silkchangesetconfigfile.md +40 -0
- package/public/content/packages/silk-effects/api/variable/silkpublishabilitydetectorlive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/silkworkspaceanalyzerlive.md +20 -0
- package/public/content/packages/silk-effects/api/variable/sourcerequirement.md +92 -0
- package/public/content/packages/silk-effects/api/variable/syncresult.md +81 -0
- package/public/content/packages/silk-effects/api/variable/tagstrategylive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/tagstrategytype.md +18 -0
- package/public/content/packages/silk-effects/api/variable/tooldiscoverylive.md +19 -0
- package/public/content/packages/silk-effects/api/variable/toolsource.md +18 -0
- package/public/content/packages/silk-effects/api/variable/versionextractor.md +99 -0
- package/public/content/packages/silk-effects/api/variable/versioningstrategylive.md +18 -0
- package/public/content/packages/silk-effects/api/variable/versioningstrategyresult.md +22 -0
- package/public/content/packages/silk-effects/api/variable/versioningstrategytype.md +18 -0
- package/public/content/packages/silk-effects/api.md +144 -0
- package/public/content/packages/templates/api/function/createbiome.md +26 -0
- package/public/content/packages/templates/api/function/createchangeset.md +26 -0
- package/public/content/packages/templates/api/function/creategitignore.md +26 -0
- package/public/content/packages/templates/api/function/createpackagejson.md +26 -0
- package/public/content/packages/templates/api/function/createpnpmworkspace.md +26 -0
- package/public/content/packages/templates/api/function/createreadme.md +26 -0
- package/public/content/packages/templates/api/function/createtsconfig.md +26 -0
- package/public/content/packages/templates/api/function/createturboroot.md +26 -0
- package/public/content/packages/templates/api/function/createturboworkspace.md +26 -0
- package/public/content/packages/templates/api/function/createvscode.md +26 -0
- package/public/content/packages/templates/api/function/createworkspace.md +26 -0
- package/public/content/packages/templates/api/interface/templateentry.md +44 -0
- package/public/content/packages/templates/api/type/biomeoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/changesetoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/gitignoreoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/packagejsonoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/pnpmworkspaceoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/readmeoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/template.md +18 -0
- package/public/content/packages/templates/api/type/tsconfigoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/turborootoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/turboworkspaceoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/updatetemplate.md +18 -0
- package/public/content/packages/templates/api/type/vscodeoptionstype.md +18 -0
- package/public/content/packages/templates/api/type/workspaceoptionstype.md +18 -0
- package/public/content/packages/templates/api/variable/biomeoptions.md +22 -0
- package/public/content/packages/templates/api/variable/changesetoptions.md +29 -0
- package/public/content/packages/templates/api/variable/gitignoreoptions.md +27 -0
- package/public/content/packages/templates/api/variable/packagejsonoptions.md +60 -0
- package/public/content/packages/templates/api/variable/pnpmworkspaceoptions.md +23 -0
- package/public/content/packages/templates/api/variable/readmeoptions.md +21 -0
- package/public/content/packages/templates/api/variable/tsconfigoptions.md +26 -0
- package/public/content/packages/templates/api/variable/turborootoptions.md +25 -0
- package/public/content/packages/templates/api/variable/turboworkspaceoptions.md +20 -0
- package/public/content/packages/templates/api/variable/vscodeoptions.md +25 -0
- package/public/content/packages/templates/api/variable/workspaceoptions.md +33 -0
- package/public/content/packages/templates/api.md +60 -0
- package/public/content/packages/tsdown-plugins/api/class/buildcollector.md +62 -0
- package/public/content/packages/tsdown-plugins/api/class/buildcollectortag.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/buildreport.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/configvalidationerror.md +41 -0
- package/public/content/packages/tsdown-plugins/api/class/configvalidator.md +18 -0
- package/public/content/packages/tsdown-plugins/api/class/diagnosticentry.md +18 -0
- package/public/content/packages/tsdown-plugins/api/class/emittedfile.md +18 -0
- package/public/content/packages/tsdown-plugins/api/class/environmentdetector.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/executorresolver.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/formatselector.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/metagenerationerror.md +41 -0
- package/public/content/packages/tsdown-plugins/api/class/outputrenderer.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/passreport.md +18 -0
- package/public/content/packages/tsdown-plugins/api/class/reporttimings.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/targetgroupreport.md +16 -0
- package/public/content/packages/tsdown-plugins/api/class/tsconfigresolver.md +84 -0
- package/public/content/packages/tsdown-plugins/api/function/applysubdirmetaentries.md +21 -0
- package/public/content/packages/tsdown-plugins/api/function/buildemittedmanifest.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/buildmetricsplugin.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/buildresolvedtsconfig.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/buildtargetgroups.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/cjsdefaultinterop.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/computeexefilename.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/createtimer.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/createtsdownlogger.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/defaultmanifesttransform.md +20 -0
- package/public/content/packages/tsdown-plugins/api/function/deriveexportpaths.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/derivetargetgroupoptions.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/emitmanifest.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/extractentries.md +16 -0
- package/public/content/packages/tsdown-plugins/api/function/flattenissues.md +21 -0
- package/public/content/packages/tsdown-plugins/api/function/formattime.md +16 -0
- package/public/content/packages/tsdown-plugins/api/function/generatemeta.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/istargetobject.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/nodebuiltindefaultinterop.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/normalizebinpaths.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/normalizeexeoptions.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/normalizeloosefiles.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/normalizemetaoptions.md +21 -0
- package/public/content/packages/tsdown-plugins/api/function/packagejsonentries.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/readtsconfigjsx.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/removedeclarationmaps.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/renderreport.md +17 -0
- package/public/content/packages/tsdown-plugins/api/function/resolvejsxconfig.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/resolvemanifest.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/resolvenextversions.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/resolveportabletsconfig.md +27 -0
- package/public/content/packages/tsdown-plugins/api/function/resolvetargets.md +21 -0
- package/public/content/packages/tsdown-plugins/api/function/rewritemetaversions.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/runexebuild.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/runmetapass.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/serializeissues.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/syncpublicdir.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/transformbin.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/transformexports.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/transformmanifest.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/writeissuesartifact.md +23 -0
- package/public/content/packages/tsdown-plugins/api/function/writeresolvedtsconfig.md +18 -0
- package/public/content/packages/tsdown-plugins/api/function/writetargetsbinding.md +18 -0
- package/public/content/packages/tsdown-plugins/api/interface/buildemittedmanifestoptions.md +69 -0
- package/public/content/packages/tsdown-plugins/api/interface/buildgroupspec.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/buildissues.md +56 -0
- package/public/content/packages/tsdown-plugins/api/interface/buildtargetgroupsoptions.md +213 -0
- package/public/content/packages/tsdown-plugins/api/interface/cssoptions.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/derivedtsdownoptions.md +114 -0
- package/public/content/packages/tsdown-plugins/api/interface/deriveoptions.md +108 -0
- package/public/content/packages/tsdown-plugins/api/interface/diagnosticinput.md +66 -0
- package/public/content/packages/tsdown-plugins/api/interface/emitmanifestoptions.md +71 -0
- package/public/content/packages/tsdown-plugins/api/interface/entryoverride.md +86 -0
- package/public/content/packages/tsdown-plugins/api/interface/execonfig.md +60 -0
- package/public/content/packages/tsdown-plugins/api/interface/exerewrite.md +44 -0
- package/public/content/packages/tsdown-plugins/api/interface/exeseaconfig.md +38 -0
- package/public/content/packages/tsdown-plugins/api/interface/exetarget.md +38 -0
- package/public/content/packages/tsdown-plugins/api/interface/exetargetinput.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/extractoptions.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/extractresult.md +34 -0
- package/public/content/packages/tsdown-plugins/api/interface/formatter.md +30 -0
- package/public/content/packages/tsdown-plugins/api/interface/formattercontext.md +30 -0
- package/public/content/packages/tsdown-plugins/api/interface/generatemetaoptions.md +124 -0
- package/public/content/packages/tsdown-plugins/api/interface/jsxconfig.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/loosefilespec.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/metaoptions.md +42 -0
- package/public/content/packages/tsdown-plugins/api/interface/metaresult.md +30 -0
- package/public/content/packages/tsdown-plugins/api/interface/nextversions.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/normalizedexe.md +48 -0
- package/public/content/packages/tsdown-plugins/api/interface/normalizedloosefile.md +60 -0
- package/public/content/packages/tsdown-plugins/api/interface/normalizedmeta.md +41 -0
- package/public/content/packages/tsdown-plugins/api/interface/packagejsonentriesoptions.md +34 -0
- package/public/content/packages/tsdown-plugins/api/interface/packagejsonlike.md +30 -0
- package/public/content/packages/tsdown-plugins/api/interface/pkgoscpu.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/plaindiagnostic.md +68 -0
- package/public/content/packages/tsdown-plugins/api/interface/portabletsconfig.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/publishtargetobject.md +44 -0
- package/public/content/packages/tsdown-plugins/api/interface/renderedoutput.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/renderreportoptions.md +44 -0
- package/public/content/packages/tsdown-plugins/api/interface/resolvedcompileroptions.md +26 -0
- package/public/content/packages/tsdown-plugins/api/interface/resolvedgroup.md +44 -0
- package/public/content/packages/tsdown-plugins/api/interface/resolvedtarget.md +52 -0
- package/public/content/packages/tsdown-plugins/api/interface/resolvedtsconfig.md +36 -0
- package/public/content/packages/tsdown-plugins/api/interface/resolvedtsconfigoptions.md +50 -0
- package/public/content/packages/tsdown-plugins/api/interface/runexebuildoptions.md +74 -0
- package/public/content/packages/tsdown-plugins/api/interface/runmetapassoptions.md +104 -0
- package/public/content/packages/tsdown-plugins/api/interface/targetgroupref.md +38 -0
- package/public/content/packages/tsdown-plugins/api/interface/targetresolution.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/timer.md +30 -0
- package/public/content/packages/tsdown-plugins/api/interface/transformmanifestoptions.md +50 -0
- package/public/content/packages/tsdown-plugins/api/interface/tsconfigjsx.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/tsdocoptions.md +32 -0
- package/public/content/packages/tsdown-plugins/api/interface/tsdoctagdefinition.md +38 -0
- package/public/content/packages/tsdown-plugins/api/interface/tsdownlogger.md +62 -0
- package/public/content/packages/tsdown-plugins/api/interface/validationinput.md +69 -0
- package/public/content/packages/tsdown-plugins/api/interface/warningsuppressionrule.md +32 -0
- package/public/content/packages/tsdown-plugins/api/type/buildformat.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/buildplatform.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/dualexports.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/environment.md +16 -0
- package/public/content/packages/tsdown-plugins/api/type/exebuild.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/executor.md +16 -0
- package/public/content/packages/tsdown-plugins/api/type/json.md +16 -0
- package/public/content/packages/tsdown-plugins/api/type/loosefiles.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/outputformat.md +16 -0
- package/public/content/packages/tsdown-plugins/api/type/passkind.md +16 -0
- package/public/content/packages/tsdown-plugins/api/type/publishtargets.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/publishtargetvalue.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/targetgroupid.md +18 -0
- package/public/content/packages/tsdown-plugins/api/type/tsdownbuild.md +18 -0
- package/public/content/packages/tsdown-plugins/api/variable/ciannotationsformatter.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/configvalidatorlive.md +18 -0
- package/public/content/packages/tsdown-plugins/api/variable/default_exe_node_version.md +18 -0
- package/public/content/packages/tsdown-plugins/api/variable/environmentdetectorlive.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/executorresolverlive.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/formatselectorlive.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/jsonformatter.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/markdownformatter.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/outputrendererlive.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/reportpipelinelive.md +17 -0
- package/public/content/packages/tsdown-plugins/api/variable/silentformatter.md +16 -0
- package/public/content/packages/tsdown-plugins/api/variable/terminalformatter.md +16 -0
- package/public/content/packages/tsdown-plugins/api.md +165 -0
- package/public/content/standards/api-model-pipeline.md +6 -5
- package/resources/doc-index.js +2 -2
- package/resources/index.js +10 -1
- package/resources/schema.js +1 -1
- package/server.js +1 -1
- package/tools/biome-check.js +1 -1
- package/tools/changeset-inspect.js +1 -1
- package/tools/changeset-validate.js +1 -1
- package/tools/docs-search.js +2 -2
- package/tools/turbo-inspect.js +1 -1
- package/tools/workspace-info.js +1 -1
- package/public/content/packages/rslib-builder/overview.md +0 -68
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/silk-effects/api
|
|
3
|
+
title: "@savvy-web/silk-effects — API reference"
|
|
4
|
+
summary: "@savvy-web/silk-effects API reference: 114 documented symbols."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [silk-effects, api]
|
|
8
|
+
priority: 0.4
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# @savvy-web/silk-effects — API reference
|
|
13
|
+
|
|
14
|
+
## class
|
|
15
|
+
|
|
16
|
+
- [`AnalyzedWorkspace`](silk://packages/silk-effects/api/class/analyzedworkspace) — A fully analyzed workspace with publish targets, versioning status, and release group membership.
|
|
17
|
+
- [`BiomeSchemaSync`](silk://packages/silk-effects/api/class/biomeschemasync) — Service that keeps the `$schema` URL in Biome config files in sync with a target version.
|
|
18
|
+
- [`BiomeSyncError`](silk://packages/silk-effects/api/class/biomesyncerror) — Raised when a Biome config file cannot be read or its `$schema` URL cannot be updated.
|
|
19
|
+
- [`ChangesetConfig`](silk://packages/silk-effects/api/class/changesetconfig) — Accessor service over a workspace root's `.changeset/config.json`.
|
|
20
|
+
- [`ChangesetConfigError`](silk://packages/silk-effects/api/class/changesetconfigerror) — Raised when the `.changeset/config.json` file cannot be read or decoded.
|
|
21
|
+
- [`ChangesetConfigReader`](silk://packages/silk-effects/api/class/changesetconfigreader) — Service that reads and decodes the `.changeset/config.json` for a given workspace root.
|
|
22
|
+
- [`ConfigDiscovery`](silk://packages/silk-effects/api/class/configdiscovery) — Service that locates named config files within a workspace using priority-ordered search paths.
|
|
23
|
+
- [`ConfigNotFoundError`](silk://packages/silk-effects/api/class/confignotfounderror) — Raised when a config file cannot be located in any of the expected locations.
|
|
24
|
+
- [`ManagedSection`](silk://packages/silk-effects/api/class/managedsection) — Service for managing delimited sections in user-editable files. All methods use dual API (data-first and data-last). Identity-only operations (`read`, `isManaged`) take a SectionDefinition. Content operations (`write`, `sync`, `check`) take a SectionBlock.
|
|
25
|
+
- [`ResolvedTool`](silk://packages/silk-effects/api/class/resolvedtool) — Result of resolving a ToolDefinition. Provides `exec` and `dlx` to build commands for the resolved tool.
|
|
26
|
+
- [`SectionBlock`](silk://packages/silk-effects/api/class/sectionblock) — The content between managed section markers. `Equal` compares normalized content only (trimmed, whitespace-collapsed). Use `diff` to compute line-level differences.
|
|
27
|
+
- [`SectionDefinition`](silk://packages/silk-effects/api/class/sectiondefinition) — Identity envelope for a managed section type. `Equal` compares on `toolName` + `commentStyle`. Use to create a SectionBlock, or `generate()` for a typed factory.
|
|
28
|
+
- [`SectionParseError`](silk://packages/silk-effects/api/class/sectionparseerror) — Raised when a managed section cannot be parsed from a file.
|
|
29
|
+
- [`SectionValidationError`](silk://packages/silk-effects/api/class/sectionvalidationerror) — Raised when a SectionBlock fails validation at creation time.
|
|
30
|
+
- [`SectionWriteError`](silk://packages/silk-effects/api/class/sectionwriteerror) — Raised when a managed section cannot be written to a file.
|
|
31
|
+
- [`ShellSectionDefinition`](silk://packages/silk-effects/api/class/shellsectiondefinition) — Convenience section definition for shell hooks. `commentStyle` is always `"#"` — only `toolName` is required.
|
|
32
|
+
- [`SilkPublishability`](silk://packages/silk-effects/api/class/silkpublishability) — Silk publishability rules over `workspaces-effect`'s `PublishTarget`.
|
|
33
|
+
- [`SilkPublishConfig`](silk://packages/silk-effects/api/class/silkpublishconfig) — Silk-extended publishConfig schema.
|
|
34
|
+
- [`SilkWorkspaceAnalyzer`](silk://packages/silk-effects/api/class/silkworkspaceanalyzer) — Service that performs a full workspace analysis — discovering packages, detecting publishability, computing versioning/tag strategies, and wiring up fixed/linked release groups.
|
|
35
|
+
- [`TagFormatError`](silk://packages/silk-effects/api/class/tagformaterror) — Raised when a git tag string cannot be formatted for the given package name and version.
|
|
36
|
+
- [`TagStrategy`](silk://packages/silk-effects/api/class/tagstrategy) — Service that determines and applies the git-tag naming strategy for a release.
|
|
37
|
+
- [`ToolCommand`](silk://packages/silk-effects/api/class/toolcommand) — Wraps `@effect/platform` `Command.Command` with instance method ergonomics. Use `yield* cmd.string()` instead of `yield* Command.string(cmd)`.
|
|
38
|
+
- [`ToolDefinition`](silk://packages/silk-effects/api/class/tooldefinition) — Declares a CLI tool's identity and resolution constraints. `Equal` compares on `name` only (identity).
|
|
39
|
+
- [`ToolDiscovery`](silk://packages/silk-effects/api/class/tooldiscovery) — Service that resolves CLI tools — locating them globally (PATH) or locally (via package manager), extracting versions, enforcing source and version constraints, and caching results.
|
|
40
|
+
- [`ToolNotFoundError`](silk://packages/silk-effects/api/class/toolnotfounderror)
|
|
41
|
+
- [`ToolResolutionError`](silk://packages/silk-effects/api/class/toolresolutionerror)
|
|
42
|
+
- [`ToolVersionMismatchError`](silk://packages/silk-effects/api/class/toolversionmismatcherror)
|
|
43
|
+
- [`VersioningDetectionError`](silk://packages/silk-effects/api/class/versioningdetectionerror) — Raised when the versioning strategy cannot be determined from the workspace state.
|
|
44
|
+
- [`VersioningStrategy`](silk://packages/silk-effects/api/class/versioningstrategy) — Service that classifies the versioning strategy used by a workspace.
|
|
45
|
+
- [`WorkspaceAnalysis`](silk://packages/silk-effects/api/class/workspaceanalysis) — Full workspace analysis result containing all analyzed workspaces and project-level configuration.
|
|
46
|
+
- [`WorkspaceAnalysisError`](silk://packages/silk-effects/api/class/workspaceanalysiserror) — Raised when workspace analysis fails for a given root directory.
|
|
47
|
+
|
|
48
|
+
## function
|
|
49
|
+
|
|
50
|
+
- [`buildSchemaUrl`](silk://packages/silk-effects/api/function/buildschemaurl) — Build the expected Biome JSON schema URL for a given version.
|
|
51
|
+
- [`extractSemver`](silk://packages/silk-effects/api/function/extractsemver) — Strip leading semver range operators from a version string.
|
|
52
|
+
- [`readTargetsBinding`](silk://packages/silk-effects/api/function/readtargetsbinding) — Read the bundler's `<pkgPath>/dist/prod/targets.json` binding via FileSystem.
|
|
53
|
+
- [`savvyBasePreamble`](silk://packages/silk-effects/api/function/savvybasepreamble) — Package-manager detection preamble shared across Silk Suite hook files.
|
|
54
|
+
- [`savvyHooksHygiene`](silk://packages/silk-effects/api/function/savvyhookshygiene) — Repo-hygiene block shared across Silk Suite hook files.
|
|
55
|
+
- [`savvyToolSection`](silk://packages/silk-effects/api/function/savvytoolsection) — Build a consumer's one-line tool section so every consumer calls the shared base helpers identically.
|
|
56
|
+
|
|
57
|
+
## interface
|
|
58
|
+
|
|
59
|
+
- [`CommitlintPlugin`](silk://packages/silk-effects/api/interface/commitlintplugin) — Commitlint plugin interface.
|
|
60
|
+
- [`CommitlintUserConfig`](silk://packages/silk-effects/api/interface/commitlintuserconfig) — Commitlint user configuration.
|
|
61
|
+
- [`PromptConfig`](silk://packages/silk-effects/api/interface/promptconfig) — Commitlint prompt configuration.
|
|
62
|
+
- [`PromptSettings`](silk://packages/silk-effects/api/interface/promptsettings) — Commitlint prompt settings.
|
|
63
|
+
- [`PublishablePackage`](silk://packages/silk-effects/api/interface/publishablepackage) — A publishable workspace package and the count of its resolved publish targets.
|
|
64
|
+
- [`RawPackageJson`](silk://packages/silk-effects/api/interface/rawpackagejson) — Raw `package.json` shape consumed by `SilkPublishability.detect`.
|
|
65
|
+
- [`RawPublishConfig`](silk://packages/silk-effects/api/interface/rawpublishconfig) — Raw `publishConfig` shape (the unschematized fields silk rules consult).
|
|
66
|
+
- [`RawTargetObject`](silk://packages/silk-effects/api/interface/rawtargetobject) — A single object-form publish target in the `publishConfig.targets` map (mirrors the bundler's `PublishTargetObject`).
|
|
67
|
+
- [`RulesConfig`](silk://packages/silk-effects/api/interface/rulesconfig) — Commitlint rules configuration.
|
|
68
|
+
- [`TargetBinding`](silk://packages/silk-effects/api/interface/targetbinding) — A resolved registry target from the bundler's `dist/prod/targets.json` binding (one per `publishConfig.targets` key).
|
|
69
|
+
- [`TargetGroupBinding`](silk://packages/silk-effects/api/interface/targetgroupbinding) — A resolved byte-variant group from the bundler's `dist/prod/targets.json` binding.
|
|
70
|
+
- [`TargetsBinding`](silk://packages/silk-effects/api/interface/targetsbinding) — The `dist/prod/targets.json` binding the bundler emits for the release action to consume.
|
|
71
|
+
|
|
72
|
+
## namespace
|
|
73
|
+
|
|
74
|
+
- [`Changesets`](silk://packages/silk-effects/api/namespace/changesets)
|
|
75
|
+
- [`Commitlint`](silk://packages/silk-effects/api/namespace/commitlint)
|
|
76
|
+
- [`Lint`](silk://packages/silk-effects/api/namespace/lint)
|
|
77
|
+
- [`Turbo`](silk://packages/silk-effects/api/namespace/turbo)
|
|
78
|
+
|
|
79
|
+
## type
|
|
80
|
+
|
|
81
|
+
- [`BiomeSyncOptions`](silk://packages/silk-effects/api/type/biomesyncoptions)
|
|
82
|
+
- [`BiomeSyncResult`](silk://packages/silk-effects/api/type/biomesyncresult)
|
|
83
|
+
- [`ChangesetConfigFile`](silk://packages/silk-effects/api/type/changesetconfigfile)
|
|
84
|
+
- [`ChangesetMode`](silk://packages/silk-effects/api/type/changesetmode) — Changeset operating mode for a workspace root.
|
|
85
|
+
- [`CheckResult`](silk://packages/silk-effects/api/type/checkresult)
|
|
86
|
+
- [`CheckResultDefinition`](silk://packages/silk-effects/api/type/checkresultdefinition) — Result of a check operation.
|
|
87
|
+
- [`CommentStyle`](silk://packages/silk-effects/api/type/commentstyle)
|
|
88
|
+
- [`ConfigDiscoveryOptions`](silk://packages/silk-effects/api/type/configdiscoveryoptions)
|
|
89
|
+
- [`ConfigLocation`](silk://packages/silk-effects/api/type/configlocation)
|
|
90
|
+
- [`ConfigSource`](silk://packages/silk-effects/api/type/configsource)
|
|
91
|
+
- [`RawPublishTargets`](silk://packages/silk-effects/api/type/rawpublishtargets) — The `publishConfig.targets` map, keyed by target id (`npm`, `github`, or a custom key).
|
|
92
|
+
- [`RawTargetValue`](silk://packages/silk-effects/api/type/rawtargetvalue) — A `publishConfig.targets` value: `true` (well-known registry, base name), a string (name override), or an object.
|
|
93
|
+
- [`ResolutionPolicy`](silk://packages/silk-effects/api/type/resolutionpolicy)
|
|
94
|
+
- [`ResolutionPolicyDefinition`](silk://packages/silk-effects/api/type/resolutionpolicydefinition) — What to do when both global and local versions differ.
|
|
95
|
+
- [`RuleApplicability`](silk://packages/silk-effects/api/type/ruleapplicability) — Rule applicability.
|
|
96
|
+
- [`RuleConfigTuple`](silk://packages/silk-effects/api/type/ruleconfigtuple) — Rule configuration tuple.
|
|
97
|
+
- [`RuleSeverity`](silk://packages/silk-effects/api/type/ruleseverity) — Rule severity level. - 0: Disabled - 1: Warning - 2: Error
|
|
98
|
+
- [`SectionDiff`](silk://packages/silk-effects/api/type/sectiondiff)
|
|
99
|
+
- [`SectionDiffDefinition`](silk://packages/silk-effects/api/type/sectiondiffdefinition) — Result of comparing two section contents.
|
|
100
|
+
- [`SilkChangesetConfigFile`](silk://packages/silk-effects/api/type/silkchangesetconfigfile)
|
|
101
|
+
- [`SourceRequirement`](silk://packages/silk-effects/api/type/sourcerequirement)
|
|
102
|
+
- [`SourceRequirementDefinition`](silk://packages/silk-effects/api/type/sourcerequirementdefinition) — Where the tool must be found.
|
|
103
|
+
- [`SyncResult`](silk://packages/silk-effects/api/type/syncresult)
|
|
104
|
+
- [`SyncResultDefinition`](silk://packages/silk-effects/api/type/syncresultdefinition) — Result of a sync operation.
|
|
105
|
+
- [`TagStrategyType`](silk://packages/silk-effects/api/type/tagstrategytype)
|
|
106
|
+
- [`ToolSource`](silk://packages/silk-effects/api/type/toolsource)
|
|
107
|
+
- [`VersionExtractor`](silk://packages/silk-effects/api/type/versionextractor)
|
|
108
|
+
- [`VersionExtractorDefinition`](silk://packages/silk-effects/api/type/versionextractordefinition) — How to extract a version string from a CLI tool.
|
|
109
|
+
- [`VersioningStrategyResult`](silk://packages/silk-effects/api/type/versioningstrategyresult)
|
|
110
|
+
- [`VersioningStrategyType`](silk://packages/silk-effects/api/type/versioningstrategytype)
|
|
111
|
+
|
|
112
|
+
## variable
|
|
113
|
+
|
|
114
|
+
- [`BiomeSchemaSyncLive`](silk://packages/silk-effects/api/variable/biomeschemasynclive) — Live implementation of BiomeSchemaSync.
|
|
115
|
+
- [`BiomeSyncOptions`](silk://packages/silk-effects/api/variable/biomesyncoptions) — Options for BiomeSchemaSync operations.
|
|
116
|
+
- [`BiomeSyncResult`](silk://packages/silk-effects/api/variable/biomesyncresult) — Result of a Biome schema URL sync or check operation.
|
|
117
|
+
- [`ChangesetConfigFile`](silk://packages/silk-effects/api/variable/changesetconfigfile)
|
|
118
|
+
- [`ChangesetConfigLive`](silk://packages/silk-effects/api/variable/changesetconfiglive) — Live ChangesetConfig reading via ChangesetConfigReader, cached per root.
|
|
119
|
+
- [`ChangesetConfigReaderLive`](silk://packages/silk-effects/api/variable/changesetconfigreaderlive) — Live implementation of ChangesetConfigReader.
|
|
120
|
+
- [`CheckResult`](silk://packages/silk-effects/api/variable/checkresult)
|
|
121
|
+
- [`CommentStyle`](silk://packages/silk-effects/api/variable/commentstyle) — Comment syntax used to write managed section markers.
|
|
122
|
+
- [`ConfigDiscoveryLive`](silk://packages/silk-effects/api/variable/configdiscoverylive) — Live implementation of ConfigDiscovery.
|
|
123
|
+
- [`ConfigDiscoveryOptions`](silk://packages/silk-effects/api/variable/configdiscoveryoptions) — Options passed to config discovery methods.
|
|
124
|
+
- [`ConfigLocation`](silk://packages/silk-effects/api/variable/configlocation) — The resolved location of a discovered config file.
|
|
125
|
+
- [`ConfigSource`](silk://packages/silk-effects/api/variable/configsource) — The discovery strategy used to locate a config file.
|
|
126
|
+
- [`ManagedSectionLive`](silk://packages/silk-effects/api/variable/managedsectionlive) — Live implementation of ManagedSection backed by `@effect/platform` FileSystem.
|
|
127
|
+
- [`PublishabilityDetectorAdaptiveLive`](silk://packages/silk-effects/api/variable/publishabilitydetectoradaptivelive) — Ignore-aware override of SilkPublishability. `detect` short-circuits to `[]` for changeset-ignored packages, then dispatches on `ChangesetConfig.mode`: `none` → `[]`; `silk` → `SilkPublishability.detect`; `vanilla` → the library default.
|
|
128
|
+
- [`ResolutionPolicy`](silk://packages/silk-effects/api/variable/resolutionpolicy)
|
|
129
|
+
- [`SavvyBaseSection`](silk://packages/silk-effects/api/variable/savvybasesection) — Section identity for the shared package-manager preamble. `toolName` is `"savvy-base"`; pair with savvyBasePreamble to build the block:
|
|
130
|
+
- [`SavvyHooksSection`](silk://packages/silk-effects/api/variable/savvyhookssection) — Section identity for the shared repo-hygiene block. `toolName` is `"savvy-hooks"`; pair with savvyHooksHygiene.
|
|
131
|
+
- [`SectionDiff`](silk://packages/silk-effects/api/variable/sectiondiff)
|
|
132
|
+
- [`SilkChangesetConfigFile`](silk://packages/silk-effects/api/variable/silkchangesetconfigfile)
|
|
133
|
+
- [`SilkPublishabilityDetectorLive`](silk://packages/silk-effects/api/variable/silkpublishabilitydetectorlive) — Override of `workspaces-effect`'s SilkPublishability Tag with pure silk rules.
|
|
134
|
+
- [`SilkWorkspaceAnalyzerLive`](silk://packages/silk-effects/api/variable/silkworkspaceanalyzerlive) — Live implementation of SilkWorkspaceAnalyzer.
|
|
135
|
+
- [`SourceRequirement`](silk://packages/silk-effects/api/variable/sourcerequirement)
|
|
136
|
+
- [`SyncResult`](silk://packages/silk-effects/api/variable/syncresult)
|
|
137
|
+
- [`TagStrategyLive`](silk://packages/silk-effects/api/variable/tagstrategylive) — Live implementation of TagStrategy with no external dependencies.
|
|
138
|
+
- [`TagStrategyType`](silk://packages/silk-effects/api/variable/tagstrategytype) — Git tag naming strategy for a workspace.
|
|
139
|
+
- [`ToolDiscoveryLive`](silk://packages/silk-effects/api/variable/tooldiscoverylive) — Live implementation of ToolDiscovery.
|
|
140
|
+
- [`ToolSource`](silk://packages/silk-effects/api/variable/toolsource) — Where a tool was resolved from.
|
|
141
|
+
- [`VersionExtractor`](silk://packages/silk-effects/api/variable/versionextractor)
|
|
142
|
+
- [`VersioningStrategyLive`](silk://packages/silk-effects/api/variable/versioningstrategylive) — Live implementation of VersioningStrategy.
|
|
143
|
+
- [`VersioningStrategyResult`](silk://packages/silk-effects/api/variable/versioningstrategyresult) — Output of the versioning strategy detection, combining the strategy type with group metadata.
|
|
144
|
+
- [`VersioningStrategyType`](silk://packages/silk-effects/api/variable/versioningstrategytype) — Versioning strategy classification for a workspace.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createbiome
|
|
3
|
+
title: "createBiome — templates function"
|
|
4
|
+
summary: "Generates a `biome.jsonc` configuration file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createBiome
|
|
13
|
+
|
|
14
|
+
Generates a `biome.jsonc` configuration file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createBiome(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the Biome configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated `biome.jsonc` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createchangeset
|
|
3
|
+
title: "createChangeset — templates function"
|
|
4
|
+
summary: "Generates a `.changeset/config.json` configuration file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createChangeset
|
|
13
|
+
|
|
14
|
+
Generates a `.changeset/config.json` configuration file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createChangeset(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the Changesets configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated changeset config entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/creategitignore
|
|
3
|
+
title: "createGitignore — templates function"
|
|
4
|
+
summary: "Generates a `.gitignore` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createGitignore
|
|
13
|
+
|
|
14
|
+
Generates a `.gitignore` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createGitignore(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the gitignore configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated `.gitignore` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createpackagejson
|
|
3
|
+
title: "createPackageJson — templates function"
|
|
4
|
+
summary: "Generates a sorted `package.json` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createPackageJson
|
|
13
|
+
|
|
14
|
+
Generates a sorted `package.json` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createPackageJson(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the package.json configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated `package.json` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createpnpmworkspace
|
|
3
|
+
title: "createPnpmWorkspace — templates function"
|
|
4
|
+
summary: "Generates a `pnpm-workspace.yaml` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createPnpmWorkspace
|
|
13
|
+
|
|
14
|
+
Generates a `pnpm-workspace.yaml` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createPnpmWorkspace(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the pnpm workspace configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated `pnpm-workspace.yaml` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createreadme
|
|
3
|
+
title: "createReadme — templates function"
|
|
4
|
+
summary: "Generates a `README.md` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createReadme
|
|
13
|
+
|
|
14
|
+
Generates a `README.md` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createReadme(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the README configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated `README.md` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createtsconfig
|
|
3
|
+
title: "createTsConfig — templates function"
|
|
4
|
+
summary: "Generates a `tsconfig.json` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createTsConfig
|
|
13
|
+
|
|
14
|
+
Generates a `tsconfig.json` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createTsConfig(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the TypeScript configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated `tsconfig.json` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createturboroot
|
|
3
|
+
title: "createTurboRoot — templates function"
|
|
4
|
+
summary: "Generates a root `turbo.json` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createTurboRoot
|
|
13
|
+
|
|
14
|
+
Generates a root `turbo.json` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createTurboRoot(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the root Turborepo configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated root `turbo.json` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createturboworkspace
|
|
3
|
+
title: "createTurboWorkspace — templates function"
|
|
4
|
+
summary: "Generates a workspace-level `turbo.json` file entry."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createTurboWorkspace
|
|
13
|
+
|
|
14
|
+
Generates a workspace-level `turbo.json` file entry.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createTurboWorkspace(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the workspace Turborepo configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated workspace `turbo.json` entry
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createvscode
|
|
3
|
+
title: "createVsCode — templates function"
|
|
4
|
+
summary: "Generates `.vscode/settings.json` and `.vscode/extensions.json` file entries."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createVsCode
|
|
13
|
+
|
|
14
|
+
Generates `.vscode/settings.json` and `.vscode/extensions.json` file entries.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createVsCode(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the VS Code configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array containing the generated VS Code configuration entries
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/function/createworkspace
|
|
3
|
+
title: "createWorkspace — templates function"
|
|
4
|
+
summary: "Generates all file entries for a new workspace scaffold."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# createWorkspace
|
|
13
|
+
|
|
14
|
+
Generates all file entries for a new workspace scaffold.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
function createWorkspace(options: unknown): TemplateEntry[];
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
- `options` `unknown` — the workspace configuration options
|
|
23
|
+
|
|
24
|
+
## Returns
|
|
25
|
+
|
|
26
|
+
an array of template entries for the complete workspace
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/interface/templateentry
|
|
3
|
+
title: "TemplateEntry — templates interface"
|
|
4
|
+
summary: "A generated content entry from a template. Templates produce content with a logical name and suggested filename. The consumer decides where (and whether) to wr…"
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# TemplateEntry
|
|
13
|
+
|
|
14
|
+
A generated content entry from a template. Templates produce content with a logical name and suggested filename. The consumer decides where (and whether) to write the content.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
interface TemplateEntry
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Members
|
|
21
|
+
|
|
22
|
+
### content
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
readonly content: string;
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The generated file content
|
|
29
|
+
|
|
30
|
+
### filename
|
|
31
|
+
|
|
32
|
+
```ts
|
|
33
|
+
readonly filename: string;
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Suggested default filename (e.g., "tsconfig.json", ".vscode/settings.json")
|
|
37
|
+
|
|
38
|
+
### name
|
|
39
|
+
|
|
40
|
+
```ts
|
|
41
|
+
readonly name: string;
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Logical name for this entry (e.g., "tsconfig", "biome", "vscode-settings")
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/biomeoptionstype
|
|
3
|
+
title: "BiomeOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of BiomeOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# BiomeOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [BiomeOptions](silk://packages/templates/api/variable/biomeoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type BiomeOptionsType = typeof BiomeOptions.Type;
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/changesetoptionstype
|
|
3
|
+
title: "ChangesetOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of ChangesetOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ChangesetOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [ChangesetOptions](silk://packages/templates/api/variable/changesetoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type ChangesetOptionsType = typeof ChangesetOptions.Type;
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/gitignoreoptionstype
|
|
3
|
+
title: "GitignoreOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of GitignoreOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# GitignoreOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [GitignoreOptions](silk://packages/templates/api/variable/gitignoreoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type GitignoreOptionsType = typeof GitignoreOptions.Type;
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/packagejsonoptionstype
|
|
3
|
+
title: "PackageJsonOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of PackageJsonOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PackageJsonOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [PackageJsonOptions](silk://packages/templates/api/variable/packagejsonoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type PackageJsonOptionsType = typeof PackageJsonOptions.Type;
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/pnpmworkspaceoptionstype
|
|
3
|
+
title: "PnpmWorkspaceOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of PnpmWorkspaceOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PnpmWorkspaceOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [PnpmWorkspaceOptions](silk://packages/templates/api/variable/pnpmworkspaceoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type PnpmWorkspaceOptionsType = typeof PnpmWorkspaceOptions.Type;
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/readmeoptionstype
|
|
3
|
+
title: "ReadmeOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of ReadmeOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ReadmeOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [ReadmeOptions](silk://packages/templates/api/variable/readmeoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type ReadmeOptionsType = typeof ReadmeOptions.Type;
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/template
|
|
3
|
+
title: "Template — templates type"
|
|
4
|
+
summary: "A template: typed options in, content entries out."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Template
|
|
13
|
+
|
|
14
|
+
A template: typed options in, content entries out.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type Template<O> = (options: O) => TemplateEntry[];
|
|
18
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/templates/api/type/tsconfigoptionstype
|
|
3
|
+
title: "TsConfigOptionsType — templates type"
|
|
4
|
+
summary: "The decoded type of TsConfigOptions."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [templates, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# TsConfigOptionsType
|
|
13
|
+
|
|
14
|
+
The decoded type of [TsConfigOptions](silk://packages/templates/api/variable/tsconfigoptions).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
type TsConfigOptionsType = typeof TsConfigOptions.Type;
|
|
18
|
+
```
|