JSPM

@auto-canary/vscode

11.3.0--canary.2478.87bcf4d47797ed8cc7152538b86fd742d8d19462.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 37
  • Score
    100M100P100Q88607F
  • License MIT

Publish an vscode extension

Package Exports

  • @auto-canary/vscode
  • @auto-canary/vscode/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@auto-canary/vscode) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Vscode Plugin

Publish a vscode extension.

Installation

This plugin is not included with the auto CLI installed via NPM. To install:

npm i --save-dev @auto-it/vscode
# or
yarn add -D @auto-it/vscode

Usage

{
  "plugins": [
    "vscode"
    // other plugins
  ]
}

Setup

  1. Create an organization for your extension
  2. Create a personal access token and store the token in your .env file as VSCE_TOKEN and add the same variable to your CI
  3. Create a publisher for your extension and set the publisher in your package.json

That's it!

Learn more about creating a great looking extension.

Options

baseContentUrl

Prepend all relative links in README.md with this url.

{
  "plugins": [
    [
      "vscode",
      { "baseContentUrl": "https://github.com/my-username/my-repo/tree/main" }
    ]
    // other plugins
  ]
}

baseImagesUrl

Prepend all relative image links in README.md with this url.

{
  "plugins": [
    // other plugins
    [
      "vscode",
      {
        "baseContentUrl": "https://raw.githubusercontent.com/my-username/my-repo/main/"
      }
    ]
  ]
}