Hi! I’m really excited that you are interested in contributing to AppWorks. Before submitting your contribution though, please make sure to take a moment and read through the following guidelines.
.
├── extensions // VS Code extensions
│ ├── app
├── packages // Common packages, used by multiple extensions
│ ├── constant
│ └── config
└── scripts // Script command execution files
Clone repo and initialize the setup environment:
$ git clone [email protected]:apptools-lab/appworks.git
$ cd appworks && npm run setup # This will take about 20 minutes
# add dep to some package
$ yarn workspace appworks add <npmName>
# add dep to project
$ yarn add <npmName> -D -W
$ npm run packages:watch # Building packages in real time, helpful for develop extension
$ npm run publish:package # or npm run publish-beta:package
You can add the VS Code Extension of AppWorks to the directory extension
.
Install Yeoman and VS Code Extension Generator:
npm install -g yo generator-code
In the extensions/
Directory, execute yo code
to initialize the extension
yo code
Use the VS Code to develop the extension project.
Open a new window and set /extensions/xxx
as workspace, enable extension debugging through F5
:
# Take application-manager for example
$ code ./extensions/application-manager
Please see VS Code Extension for more details.
# Install CLI package
$ npm install -g vsce
$ cd ./extensions/application-manager
$ vsce package
# iceworks-app.vsix generated
# Test extension
$ code --install-extension ./extensions/application-manager/iceworks-app-x.x.x.vsix
$ vsce publish -p YOUR_PERSONAL_ACCESS_TOKEN
# <publisherID>.iceworks-app published to VS Code Marketplace
-
When your PR has been merged into
beta
branch, changed packages and VS Code Extensions will be auto published their beta versions.You can download the beta version of extensions from the following link, only the extensions to be published will be in the package:
https://iceworks.oss-cn-hangzhou.aliyuncs.com/vscode-extensions/beta/AppWorks.zip
-
When your PR has been merged into
master
branch, changed packages and VS Code Extensions will be auto published.
Get a Personal Access Token:
-
From organization's home page(
https://dev.azure.com/iceworksteam
) open the User settings dropdown menu next to your profile image and select Personal access tokens: -
On the Personal Access Tokens page, select New Token to create a new Personal Access Token and set the following details:
- Give it a Name
- Set Organization to All accessible organizations
- Optionally extend its expiration date
- Set Scopes to Custom defined and choose the Marketplace > Manage scope
- Select Create and you'll be presented with your newly created Personal Access Token. Copy it.
Set Personal Access Token for Github Actions:
- Visit Actions secrets
- Update
VSCE_TOKEN
:
- Only code that's ready for release should be committed to the master branch. All development should be done in dedicated branches.
- Checkout a new topic branch from master branch, and merge back against master branch.
- Make sure
npm test
passes. - If adding new feature:
- Add accompanying test case.
- Provide convincing reason to add this feature. Ideally you should open a suggestion issue first and have it greenlighted before working on it.
- If fixing a bug:
- If you are resolving a special issue, add
(fix #xxxx[,#xxx])
(#xxxx is the issue id) in your PR title for a better release log, e.g.update entities encoding/decoding (fix #3899)
. - Provide detailed description of the bug in the PR. Live demo preferred.
- Add appropriate test coverage if applicable.
- If you are resolving a special issue, add
- Make sure includes following changes:
- Update extension or package
version
of package.json - Update
CHANGLOG.md
for extensions
- Update extension or package
- The issue list of this repo is exclusively for bug reports and feature requests. Non-conforming issues will be closed immediately.
- For simple beginner questions, you can get quick answers from
- For more complicated questions, you can use Google or StackOverflow. Make sure to provide enough information when asking your questions - this makes it easier for others to help you!
- Try to search for your issue, it may have already been answered or even fixed in the development branch.
- It is required that you clearly describe the steps necessary to reproduce the issue you are running into. Issues with no clear repro steps will not be triaged. If an issue labeled "need repro" receives no further input from the issue author for more than 5 days, it will be closed.
- For bugs that involves build setups, you can create a reproduction repository with steps in the README.
- If your issue is resolved but still open, don’t hesitate to close it. In case you found a solution by yourself, it could be helpful to explain how you fixed it.
- Your commits message must follow our git commit specific.
- We will check your commit message, if it does not conform to the specification, the commit will be automatically refused, make sure you have read the specification above.
- You could use
git cz
with a CLI interface to replacegit commit
command, it will help you to build a proper commit-message, see commitizen. - It's OK to have multiple small commits as you work on your branch - we will let GitHub automatically squash it before merging.