Skip to content

Full reference

docs:build

  • Project: @monolit/documentation
  • Source:

    .scripts/build.sh
    
  • Description:

    Build the MonoLit documentation website.

docs:scripts:build

  • Project: root
  • Source:

    nsd --docs-location "packages/documentation/docs/reference/Repository Scripts/"
    
  • Description:

    Build the node-scripts-docs you're reading right now.

docs:scripts:check

  • Project: root
  • Source:

    nsd --docs-location "packages/documentation/docs/reference/Repository Scripts/" --check-only
    
  • Description:

    Check if there are any changes to the node-scripts-docs documentation.

docs:serve

  • Project: @monolit/documentation
  • Source:

    .scripts/serve.sh
    
  • Description:

    Run an HTTP server that serves, and continuously updates the documentation site.

extension:clean

  • Project: monolit
  • Source:

    rm -rf dist
    
  • Description:

    Delete all build output of the extension.

extension:compile

  • Project: monolit
  • Source:

    webpack --mode development
    
  • Description:

    Compile a development build of the extension.

extension:package

  • Project: monolit
  • Source:

    run vsce package --yarn
    
  • Description:

    documentation pending

extension:package:patch

  • Project: monolit
  • Source:

    npm version patch && run vsce package --yarn
    
  • Description:

    documentation pending

extension:publish

  • Project: monolit
  • Source:

    run vsce publish --yarn
    
  • Description:

    documentation pending

extension:watch

  • Project: monolit
  • Source:

    webpack --mode development --watch
    
  • Description:

    Build the extension in watch mode.

lint:eslint

  • Project: root
  • Source:

    eslint packages --ext .ts
    
  • Description:

    Run ESLint on the TypeScript sources.

lint:tsc

  • Project: root
  • Source:

    tsc --noEmit
    
  • Description:

    Run the TypeScript compiler on the TypeScript sources to check for errors.

typecheck:all

  • Project: root
  • Source:

    tsc --noEmit --incremental false
    
  • Description:

    Type-check all projects, to fill the problems panel in VS Code.

vscode:prepublish

  • Project: monolit
  • Source:

    webpack --mode production
    
  • Description:

    Pre-publish hook from vsce. Compile the extension in production mode.


Last update: May 30, 2022