Thanks for your interest in contributing to Stencil! 🎉
Please see our Contributor Code of Conduct for information on our rules of conduct.
-
If you have a question about using Stencil, please ask in the Stencil Discord server.
-
It is required that you clearly describe the steps necessary to reproduce the issue you are running into. Although we would love to help our users as much as possible, diagnosing issues without clear reproduction steps is extremely time-consuming and simply not sustainable.
-
The issue list of this repository is exclusively for bug reports and feature requests. Non-conforming issues will be closed immediately.
-
Issues with no clear steps to reproduce will not be triaged.
-
If you think you have found a bug, please start by making sure it hasn't already been reported. You can search through existing issues to see if there is a similar one reported. Include closed issues as it may have been closed with a solution.
- If a bug report already exists, please upvote it using the 👍 reaction on the GitHub Issue summary. The team is currently unable to track "+1" style comments on the issue.
-
Next, create a new issue that thoroughly explains the problem.
- Please fill out the issue form in full before submitting.
- Please only include one bug per issue.
-
If you have a question about using Stencil, please ask in the Stencil Discord server.
-
Before requesting a feature, please start by making sure it hasn't already been proposed. You can search through existing GitHub issues to see if there is a similar feature request has been reported. Include closed feature requests, as it may have been closed already.
- If a feature request already exists, please upvote it using the 👍 reaction on the GitHub Issue summary. The team is currently unable to track "+1" style comments on the issue.
-
Next, create a new feature request that thoroughly explains the feature request.
- Please fill out the feature request form in full before submitting.
- Please only include one feature request per report.
- We appreciate you taking the time to contribute! Before submitting a pull request, we ask that you please create an issue that explains the bug or feature request and let us know that you plan on creating a pull request for it. If an issue already exists, please comment on that issue letting us know you would like to submit a pull request for it. This helps us to keep track of the pull request and make sure there isn't duplicated effort.
- Fork the repo.
- Clone your fork.
- Make a branch for your change.
- Stencil uses volta to manage its npm and Node versions.
Install it before proceeding.
- There's no need to install a specific version of npm or Node right now, it shall be done automatically for you in the next step
- Run
npm ci
- (Optional) If you are working on Jest support, see the installation steps in that directory's README.
- Unit test. Unit test. Unit test. Please take a look at how other unit tests are written, and you can't write too many tests.
- If there is a
*.spec.ts
file located in thetest/
folder, update it to include a test for your change, if needed. If this file doesn't exist, please notify us. - First run
npm run build
. Then runnpm run test
ornpm run test.watch
to make sure all tests are working, regardless if a test was added.
Using npm link
is beneficial to the development cycle in that consecutive builds of Stencil are immediately available in your project, without any additional npm install
steps needed:
- In the directory of stencil core:
- Run
npm run build
- Run
npm link
- Run
- In the directory of your stencil project:
- Run
npm link @stencil/core
- Add the following to your
tsconfig.json
, to ensures that typescript can resolve all modules correctly:
- Run
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@stencil/core/internal": ["node_modules/@stencil/core/internal"],
"@stencil/core/internal/*": ["node_modules/@stencil/core/internal/*"]
}
}
}
You can then test your changes against your own stencil project.
Afterwards, to clean up:
- In the directory of your stencil project:
- Run
npm unlink @stencil/core
- Remove the modifications to your tsconfig.json
- Run
- In the directory of stencil core, run
npm unlink
There are some cases where npm link
may fall short. For instance, when upgrading a minimum/recommended package version where the package in question has changed its typings. Rather than updating paths
in your project's tsconfig.json
file, it may be easier to create a tarball of the project and install in manually.
- In the directory of stencil core:
- Run
npm run build
- Run
npm pack
. This will create a tarball with the namestencil-core-<VERSION>.tgz
- Run
- In the directory of your stencil project:
- Run
npm install --save-dev <PATH_TO_STENCIL_REPO_ON_DISK>/stencil-core-<VERSION>.tgz
.- e.g. If you cloned the stencil repo to
~/workspaces
and built v.2.6.0, you would runnpm install ~/workspaces/stencil/stencil-2.6.0.tgz
- e.g. If you cloned the stencil repo to
- Run
Note that this method of testing is far more laborious than using npm link
, and requires every step to be repeated following a change to the Stencil core source.
Afterwards, to clean up:
- In the directory of your stencil project, run
npm install --save-dev stencil@<VERSION>
for the<VERSION>
of Stencil core that was installed in your project prior to testing.
The Stencil compiler itself can be run through a debugger, as opposed to running a Stencil project through a debugger.
This allows individuals working on the compiler itself to inspect fields, trace execution, and more during the
execution of a Stencil task (build
, test
, etc.).
Support for this style of debugging is currently a work in progress and may not work for every aspect of the compiler. It is considered experimental and should not be relied on for any production means.
At this time, it's recommended that the compiler be debugged by opening this project in your editor of choice. Please keep in mind that due to the number of possible development environment's that exist today, this guide may not include directions for every possible debugging environment.
It is required that Stencil be built to run it through the debugger.
Note that Stencil transpiles source code using multiple worker processes. If your debugger appears to 'hang' or get
stuck, your debugger may not have switched to a worker process that has halted on a breakpoint. You may be able to
avoid this altogether by setting --max-workers=1
when you launch Stencil (with the possibility of not being able to
reproduce timing issues between workers as a side effect).
Two launch configurations for debugging the compiler can be found in the .vscode/launch.json
configuration found in
this repository:
debug stencil compiler (default config)
will run the compiler with the default Stencil configuration file (generated at runtime).debug stencil compiler with stencil.config.ts
will run the compiler with a specific Stencil configuration file. You will be prompted for the location of the Stencil project containing the configuration file to debug with before the debugger starts.
JetBrains does not provide means to store and reuse configuration templates at this time. By default, templates are created of a specific 'type', such as 'NodeJS'. JetBrains does not allow for greater than one template of a specific type to co-exist. In other words, creating a Stencil-debugger template would override other NodeJS templates in the IDE for the project.
As a workaround, it is suggested that individuals create their own Run/Debug configurations. The following settings are recommended:
Working directory: ~/workspaces/stencil
JavaScript file: bin/stencil
Application parameters: build --config=PATH_TO_STENCIL_PROJECT_TO_DEBUG
The build
application parameter can be swapped with any of the supported Stencil CLI commands. If --config
is
omitted, Stencil will generate a default configuration file for you.
We strive to adhere to a consistent commit message format that is consistent with the Angular variant of Conventional Commits, with a few exceptions.
This enables:
- Anyone to easily understand what a commit does without reading the change itself
- The history of changes to the project to be reviewed easily using tools such as
git log
- Automated tooling to be developed for important, if mundane tasks (e.g. change log generation)
Must be one of the following:
- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- refactor: A code change that neither fixes a bug nor adds a feature
- perf: A code change that improves performance
- test: Adding missing tests
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation
- revert: Reverts a previous commit
The scope can be anything specifying place of the commit change. For example renderer
, compiler
, etc.
The subject contains succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- do not capitalize first letter
- do not place a period
.
at the end - entire length of the subject must not go over 50 characters
- describe what the commit does, not what issue it relates to or fixes
- be brief, yet descriptive - we should have a good understanding of what the commit does by reading the subject
If a pull request fixes an open GitHub issue, fixes: #
+ the issue number should be included in the footer.
Members of the Stencil engineering team should take care to add the JIRA ticket associated with a PR in the footer of the git commit. Community members need not worry about adding a footer.
If your pull request contains a breaking change, please add the text 'BREAKING CHANGE:' followed by a brief
description. This description will be used in Stencil's auto-generated changelog under the BREAKING CHANGES
section.
This syntax must be used over the 'exclamation' syntax that other projects using conventional commits may follow.
Note the newline separating the body from the footer, as well as between the JIRA ticket & 'BREAKING CHANGE:' notice:
<BODY>
fixes: #123
STENCIL-13: Watchers Not Firing as Expected when using the Custom Elements Build
BREAKING CHANGE: Watchers may appear to not fire in existing applications, when this is the expected behavior.
Below is an example commit message that follows the guidance listed above:
fix(runtime): prevent watchers from prematurely firing
Wait for the CustomElementRegistry to mark the component as ready
before setting `isWatchReady`. Otherwise, watchers may fire prematurely
if `customElements.get()` or `customElements.whenDefined()` resolve
_before_ Stencil has completed instantiating a component
fixes: #123
STENCIL-13: Watchers Not Firing as Expected when using the Custom Elements Build
BREAKING CHANGE: Watchers may appear to not fire in existing applications, when this is the expected behavior.
where:
- the type is "fix"
- the scope is "runtime"
- the PR subject describes what the PR is doing when applied
- the PR body describes what and why, rather than how
- this PR is a breaking change
which generates the following in the CHANGELOG.md
:
### Bug Fixes
* **runtime:** prevent watchers from prematurely firing in custom elements build ([#2971](https://github.com/ionic-team/stencil/issues/2971)) ([8c375bd](https://github.com/ionic-team/stencil/commit/8c375bd4bc1b55e269db69af542fa404714c9b26))
### BREAKING CHANGES
* **runtime:** Watchers may appear to not fire in existing applications, when this is the expected behavior.
Please see the stencil-site repo to update documentation.
By contributing your code to the ionic-team/stencil GitHub Repository, you agree to license your contribution under the MIT license.