-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: apply prettier config to json, md and yaml files
- Loading branch information
Showing
25 changed files
with
524 additions
and
525 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,14 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.exclude": { | ||
"out": false | ||
"out": false | ||
}, | ||
"search.exclude": { | ||
"out": true | ||
"out": true | ||
}, | ||
"typescript.tsc.autoDetect": "off", | ||
"typescript.tsdk": "node_modules\\typescript\\lib", | ||
"cSpell.words": [ | ||
"Frontdoor", | ||
"jsforce", | ||
"SOQL", | ||
"Visualforce", | ||
"vlocode" | ||
], | ||
"cSpell.words": ["Frontdoor", "jsforce", "SOQL", "Visualforce", "vlocode"], | ||
"cSpell.enabled": true, | ||
"eslint.packageManager": "pnpm" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,40 @@ | ||
# **Vlocode**: Vlocity/Salesforce support libraries | ||
|
||
This is the monorepo root for all *@vlocode* packages and the Vlocode VSCode extension. For information on the **Vlocode** VSCode extension [click here](packages/vscode-extension/README.md). | ||
This is the monorepo root for all _@vlocode_ packages and the Vlocode VSCode extension. For information on the **Vlocode** VSCode extension [click here](packages/vscode-extension/README.md). | ||
|
||
## Packages | ||
- [**@vlocode/util**](packages/util) - re-unable utility functions and classes | ||
- [**@vlocode/vlocity-deploy**](packages/vlocity-deploy) - high performance Vlocity DataPack deployment library | ||
- [**@vlocode/core**](packages/core) - IoC core and logging framework | ||
- [**@vlocode/salesforce**](packages/salesforce) - Salesforce specific classes and functions | ||
- [**Vlocode**](packages/vscode-extension) - Vlocode VSCode extension | ||
- [**@vlocode/cli**](packages/cli) - Vlocode Standalone DataPack deployment CLI | ||
|
||
- [**@vlocode/util**](packages/util) - re-unable utility functions and classes | ||
- [**@vlocode/vlocity-deploy**](packages/vlocity-deploy) - high performance Vlocity DataPack deployment library | ||
- [**@vlocode/core**](packages/core) - IoC core and logging framework | ||
- [**@vlocode/salesforce**](packages/salesforce) - Salesforce specific classes and functions | ||
- [**Vlocode**](packages/vscode-extension) - Vlocode VSCode extension | ||
- [**@vlocode/cli**](packages/cli) - Vlocode Standalone DataPack deployment CLI | ||
|
||
## Setup development environment | ||
Vlocode uses `pnpm` as package manager and lerna release manager. To setup a developer environment for Vlocode you should always use the latest LTS version of node with corepack. VScode is the preferred IDE for developing and debugging. | ||
|
||
- check out this repository | ||
- enable corepack and activate the `pnpm` package manager | ||
Vlocode uses `pnpm` as package manager and lerna release manager. To setup a developer environment for Vlocode you should always use the latest LTS version of node with corepack. VScode is the preferred IDE for developing and debugging. | ||
|
||
- check out this repository | ||
- enable corepack and activate the `pnpm` package manager | ||
|
||
```shell | ||
$ corepack enable | ||
$ corepack enable | ||
$ corepack prepare $(node -p "require('./package.json').packageManager") --activate | ||
``` | ||
- install all dependencies using pnpm, this will install all dependencies for packages in the monorepo | ||
|
||
- install all dependencies using pnpm, this will install all dependencies for packages in the monorepo | ||
|
||
```shell | ||
pnpm install | ||
``` | ||
- open the folder in VSCode and start coding; the `launch.json` and `tasks.json` that are part of this repository should allow you to run both the Vlocode CLI as well as debug the Vlocode extension without requiring any configuration | ||
|
||
- open the folder in VSCode and start coding; the `launch.json` and `tasks.json` that are part of this repository should allow you to run both the Vlocode CLI as well as debug the Vlocode extension without requiring any configuration | ||
|
||
## Tests | ||
|
||
Each vlocode package comes with unit tests. To run all tests simply run `pnpm test` from the root folder which will run all package tests. P | ||
|
||
Vlocode uses jest as test runner and is pre-configured to generate a test converge report. | ||
|
||
**Note** you should run `pnpm build` if you are not running a watcher to ensure that all packages are transpiled and linked under *node_modules*. | ||
**Note** you should run `pnpm build` if you are not running a watcher to ensure that all packages are transpiled and linked under _node_modules_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
{ | ||
"useNx": false, | ||
"version": "0.18.6", | ||
"npmClient": "pnpm", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"command": { | ||
"publish": { | ||
"conventionalCommits": true | ||
"useNx": false, | ||
"version": "0.18.6", | ||
"npmClient": "pnpm", | ||
"packages": ["packages/*"], | ||
"command": { | ||
"publish": { | ||
"conventionalCommits": true | ||
}, | ||
"version": { | ||
"gitRemote": "origin", | ||
"conventionalCommits": true, | ||
"syncWorkspaceLock": true, | ||
"message": "chore: publish version %v", | ||
"changelogHeaderMessage": "## Vlocity/Salesforce Integration for VSCode" | ||
}, | ||
"run": { | ||
"cmdDryRun": false | ||
} | ||
}, | ||
"version": { | ||
"gitRemote": "origin", | ||
"conventionalCommits": true, | ||
"syncWorkspaceLock": true, | ||
"message": "chore: publish version %v", | ||
"changelogHeaderMessage": "## Vlocity/Salesforce Integration for VSCode" | ||
}, | ||
"run": { | ||
"cmdDryRun": false | ||
} | ||
}, | ||
"ignoreChanges": [ | ||
"**/__fixtures__/**", | ||
"**/__tests__/**", | ||
"**/helpers/**", | ||
"**/*.md", | ||
".vscode", | ||
".github" | ||
] | ||
"ignoreChanges": [ | ||
"**/__fixtures__/**", | ||
"**/__tests__/**", | ||
"**/helpers/**", | ||
"**/*.md", | ||
".vscode", | ||
".github" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
{ | ||
{ | ||
"extends": "../tsconfig", | ||
"compilerOptions": { | ||
"outDir": "lib", | ||
"sourceMap": true, | ||
"baseUrl": ".", | ||
"forceConsistentCasingInFileNames": true, | ||
"types": [ | ||
"node" | ||
] | ||
"types": ["node"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.