Salesforce Extensions for VS Code
Перейти к файлу
Nick Chen 64851ba6d4 Generate d.ts files
This makes it more clear what we are exporting to others. We should be careful on what we export publicly for consumption and which ones are exported to facilitate testing.
2017-06-13 22:12:07 -07:00
.vscode Reorganize following what lerna uses 2017-06-13 16:43:54 -07:00
packages Generate d.ts files 2017-06-13 22:12:07 -07:00
README.md Update README.md 2017-06-13 16:59:31 -07:00
lerna.json Initial import 2017-06-13 12:46:42 -07:00
package.json Initial import 2017-06-13 12:46:42 -07:00

README.md

Salesforce Development Tools for Visual Studio Code

Pre-requisites

This repository uses Lerna to manage it as a monorepo. Please install Lerna globally using npm install --global lerna@^2.0.0-beta.0.

Packages

The packages directory contains the different npm packages. The naming convention is that anything with 'vscode' is a VS Code extension. Anything without 'vscode' is a standalone npm package that can be installed normally.

Useful commands

lerna bootstrap

This bootstraps the packages by issuing an npm install on each package and also symlinking any package that are part of the packages folder.

You would want do this as the first step after you have made changes in the modules.

lerna run compile

This runs npm run compile on each of the package in packages.

lerna run clean

This run npm run clean on each of the package in packages.