Skip to content

Commit ec1e809

Browse files
committed
chore: Update with Excalibur Boilerplate
1 parent 7071903 commit ec1e809

File tree

7 files changed

+146
-0
lines changed

7 files changed

+146
-0
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Code of Conduct
2+
3+
All Excalibur.js projects are released with the [Contributor Code of Conduct](https://github.com/excaliburjs/Excalibur/blob/main/.github/CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms.

.github/CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# How to Contribute
2+
3+
## Code of Conduct
4+
5+
All Excalibur.js projects are released with the [Contributor Code of Conduct](https://github.com/excaliburjs/Excalibur/blob/master/.github/CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms.
6+
7+
## Contributing Document
8+
9+
The contributing document for Excalibur.js projects is located here: [Contributing Document](https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md)

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
name: Bug Report
3+
about: Something not working as expected? Tell us about it!
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
<!-- ::: IMPORTANT NOTE :::
11+
12+
Hi, this is the Excalibur development team. Please take a moment to read the instructions below:
13+
14+
Please ask any questions you have in our forum: https://github.com/excaliburjs/Excalibur/discussions
15+
16+
Please wait to file a Github issue until after you've read through and understand the contributing guidelines. If you're not sure if you should submit an issue, ask your question in the forum linked above.
17+
https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md#reporting-bugs
18+
-->
19+
20+
<!-- Please follow the format below to make it easier for us to help you -->
21+
<!-- Add relevant pictures/gifs as appropriate -->
22+
23+
### Steps to Reproduce
24+
<!-- Detailed steps for reproducing the problem -->
25+
<!-- If possible, please include a self-contained code snippet that demonstrates the problem -->
26+
27+
### Expected Result
28+
<!-- What you expected to happen -->
29+
30+
### Actual Result
31+
<!-- What happened instead -->
32+
33+
### Environment
34+
<!-- Please fill out these fields -->
35+
- browsers and versions: <!-- e.x. Chrome (50.0.2883.87), Firefox (50.1.0), Edge (38.14393.0.0), etc. -->
36+
- operating system: <!-- What OS are you using? -->
37+
- Excalibur versions: <!-- which version(s) of Excalibur contain the bug?-->
38+
- (anything else that may be relevant) <!-- Are there versions of Excalibur that don't contain the bug?, etc. -->
39+
40+
### Current Workaround
41+
<!-- If you have determined a workaround for this issue, please detail it here -->
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new feature or improvement
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
<!-- ::: IMPORTANT NOTE :::
11+
12+
Hi, this is the Excalibur development team. Please take a moment to read the instructions below:
13+
14+
Please ask any questions you have in our forum: https://github.com/excaliburjs/Excalibur/discussions
15+
16+
Please wait to file a Github issue until after you've read through and understand the contributing guidelines. If you're not sure if you should submit an issue, ask your question in the forum linked above.
17+
https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md#suggesting-improvements
18+
-->
19+
20+
<!-- Please do a quick search through our [backlog][issues] to see if your improvement has already been suggested. If so, feel free to provide additional comments or thoughts on the existing issue. -->
21+
22+
<!-- Please follow the format below to make it easier for us to help you -->
23+
<!-- Add relevant pictures/gifs as appropriate -->
24+
25+
### Context
26+
<!-- Explain the background information for this request -->
27+
28+
### Proposal
29+
<!-- Your idea for the new feature, improvement, etc. -->
30+
<!-- If you have any ideas for implementation or next steps, add those here -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!--
2+
Hi, and thanks for contributing to Excalibur!
3+
Before you go any further, please read our contributing guide: https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md
4+
especially the "Submitting Changes" section:
5+
https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md#submitting-changes
6+
---
7+
A quick summary checklist is included below for convenience:
8+
-->
9+
10+
===:clipboard: PR Checklist :clipboard:===
11+
12+
- [ ] :pushpin: issue exists in github for these changes
13+
- [ ] :microscope: existing tests still pass
14+
- [ ] :see_no_evil: code conforms to the [style guide](https://github.com/excaliburjs/Excalibur/blob/master/STYLEGUIDE.md)
15+
- [ ] :triangular_ruler: new tests written and passing / old tests updated with new scenario(s)
16+
- [ ] :page_facing_up: changelog entry added (or not needed)
17+
18+
==================
19+
20+
<!-- If you're closing an issue with this pull request, or contributing a significant change, please include your changes in the appropriate section of CHANGELOG.md as outlined in https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md#creating-a-pull-request. -->
21+
22+
<!--Please format your pull request title according to our commit message styleguide: https://github.com/excaliburjs/Excalibur/blob/master/.github/CONTRIBUTING.md#commit-messages -->
23+
24+
<!-- Thanks again! -->
25+
26+
<!--------------------------------------------------------------------------------------------->
27+
28+
Closes #
29+
30+
## Changes:
31+
32+
- change 1
33+
- change 2

LICENSE

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
BSD 2-Clause License
2+
3+
Copyright (c) 2021, Excalibur.js
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Excalibur Snippets
2+
3+
These snippets are meant to power the embedded code in the documentation site
4+
5+
https://excaliburjs.com

0 commit comments

Comments
 (0)