UNPKG

1.22 kBMarkdownView Raw
1# Yo Code - Extension and Customization Generator
2
3[![Build Status](https://dev.azure.com/ms/vscode-generator-code/_apis/build/status/Microsoft.vscode-generator-code)](https://dev.azure.com/ms/vscode-generator-code/_build/latest?definitionId=17)
4
5We have written a Yeoman generator to help get you started. We plan to add templates for most extension/customization types into this.
6
7## Install the Generator
8
9Install Yeoman and the VS Code Extension generator:
10
11```bash
12npm install -g yo generator-code
13```
14
15## Run Yo Code
16The Yeoman generator will walk you through the steps required to create your customization or extension prompting for the required information.
17
18To launch the generator simply type:
19
20```bash
21yo code
22```
23
24![The command generator](yocode.png)
25
26## Generator Output
27
28These templates will
29* Create a base folder structure
30* Template out a rough `package.json`
31* Import any assets required for your extension e.g. tmBundles or the VS Code Library
32* For Extensions: Set-up `launch.json` for running your extension and attaching to a process
33
34## History
35
36* 1.0.0: Generates a VS Code extension for TypeScript 2.0.3
37* 0.10.x: Generates a VS Code extension for TypeScript 1.8.10
38
39## License
40
41[MIT](LICENSE)