-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from financialforcedev/chore-update-version-v…
…1.6.0 chore: update version v1.6.0
- Loading branch information
Showing
6 changed files
with
61 additions
and
45 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
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,35 +1,49 @@ | ||
# Contributing | ||
|
||
🎉🥳 Thank you for contributing 🥳🎉 | ||
Please read and follow the [code of conduct](./CODE_OF_CONTDUCT) whilst interating with this project. | ||
🎉🥳 Thank you for contributing 🥳🎉\ | ||
|
||
First things first, before raising an issue check the [open issues](https://github.com/financialforcedev/debug-log-analyzer/issues), there may already be something similar to what you are looking for. | ||
Please read and follow the [code of conduct](./CODE_OF_CONTDUCT) whilst interacting with this project. | ||
|
||
First things first, before raising an issue check the [open issues](https://github.com/financialforcedev/debug-log-analyzer/issues), there may already be something similar to what you are looking for. | ||
If there is not, open an issue before contributing, it allows us to provide help and advice or just avoid duplicate effort. | ||
|
||
## Getting the Code | ||
|
||
1. Create a fork of the project | ||
2. Clone your fork `git clone [email protected]:<username>/debug-log-analyzer.git` | ||
3. Create a topic branch in your fork from main e.g (`feat-11-some-description` or `bug-11-some-description`) | ||
3. Create a topic branch in your fork from main e.g (`feat-some-description` or `bug-some-description`) | ||
4. Edit the code in your fork. | ||
5. Create a pull request back to main, we will suggest any changes and get it merged. | ||
|
||
## Build | ||
### Dependencies | ||
|
||
In the directory you cloned the project to | ||
From a terminal, where you have cloned the repository, execute the following command to install the required dependencies: | ||
|
||
```zsh | ||
cd lana | ||
npm ci | ||
npm run compile | ||
``` | ||
|
||
> NOTE: This will rebuild the whole project, to build only the `lana` folder use `npm run local-compile` and `npm run log-viewer` for the `log-viewer` folder. | ||
### Build | ||
|
||
```zsh | ||
npm run build | ||
``` | ||
|
||
> NOTE: This will rebuild the whole project, to do a quick build (skipping minification) run `npm run build:dev` | ||
### Watch | ||
|
||
During development run the watch command to make builds for changes quickly. execute the following command: | ||
|
||
```zsh | ||
npm run watch | ||
``` | ||
|
||
This will do a full build of the bundles and then watch for file changes in the `lana` and `log-viewer` source, compiling those changes incrementally, for a fast dev experience. | ||
|
||
## Tests | ||
|
||
```zsh | ||
cd log-viewer | ||
npm run test | ||
``` | ||
|
||
|
@@ -38,5 +52,6 @@ npm run test | |
To create a VSIX (VSCode install bundle) | ||
|
||
```zsh | ||
vsce package | ||
cd lana | ||
vsce package --no-dependencies | ||
``` |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.