Skip to content

Commit

Permalink
refactor: backport latest projector changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Aug 28, 2021
1 parent 7b4b72d commit 84fac94
Show file tree
Hide file tree
Showing 15 changed files with 360 additions and 326 deletions.
215 changes: 0 additions & 215 deletions .changelogrc.js

This file was deleted.

85 changes: 49 additions & 36 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,61 +4,74 @@ about: Alert us about an issue
labels: bug
---

<details open><summary><strong>Problematic behavior</strong></summary>
<!-- THANK YOU for taking a moment to improve this project. 🤘🏿 You rock! 🎸 -->

<details open><summary><strong>The problem</strong></summary>

<!--
(1 of 2) Required: please replace this comment with a clear and concise
description of what actually happened. If applicable, add screenshots to help
explain the problem.
If we cannot reproduce the bug, it's unlikely we can fix it! So, if you really
want this bug fixed in a timely manner, consider providing a Minimal
Reproducible Example (MRE) (https://bit.ly/3q2fyVo) that demonstrates your
problem simply and in as few lines of code as possible!
🚩 Required (1 of 2): please replace this comment with a clear and concise
description of your issue. If applicable, add code samples and relevant error
log lines to help explain the problem. Favor code samples over code screenshots.
-->

</details>

<details><summary><strong>Reproduction steps</strong></summary>

<!--
(2 of 2) Required: please replace this comment with the simplest most basic
possible steps to reproduce the problematic behavior described above. If you
included a MRE above, explain here how to use it to reproduce your bug. For
example:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error xyz
-->
🚩 Required (2 of 2): please replace this comment with a link to a repo
demonstrating your issue *using as few lines of code as possible*. If we can't
reproduce the problem on our side, how can we ever hope to fix it for you 🤷🏾?
If your issue is simple enough that it doesn't warrant a demo repo, include
instead the simplest most basic possible steps to reproduce your problem; e.g.:
1. Clone the dummy repo I made based on the docs example: https://github.com/...
2. Run `npm install`
3. Run `npx jest`
4. See error "xyz" at test 2, which shouldn't be happening
-->

</details>

<!--
<details><summary><strong>Expected behavior</strong></summary>
<!--
Optional: replace this comment with a clear and concise description of what you
expected to happen if not included above. If applicable, add screenshots to help
explain.
Optional: uncomment this block and replace this text with a clear and concise
description of what you expected to happen if not included above. If applicable,
add screenshots and code samples to help explain the problem.
</details>
-->

<!--
<details><summary><strong>Suggested solution</strong></summary>
Optional: uncomment this block and replace this text with a clear and concise
proposal of how your issue might be solved, including any unnoted workarounds.
If applicable, add code samples and screenshots.
</details>
-->

<!--
<details><summary><strong>Additional context</strong></summary>
<!--
Optional: replace this comment with any other information that might help us
figure out what's going on. Examples include: details about your
development/runtime environment, error logs demonstrating the issue, a MRE
repository URL, offending YAML files, etc. For example:
- OS: ubuntu
- Browser: firefox 71, chrome 90
- Version: v1.2.3
- Node version: 14
- Babel: yes, version 7
- TypeScript project: yes
-->
Optional: uncomment this block and replace this text with any additional
information that might help us figure out what's going on. This could be dense
runtime details, lengthy error logs, assets links, or what have you; e.g.:
- OS: ubuntu 26.04
- Node version: 20
- Babel: yes, version 8.1.0
- TypeScript: yes, version 5.2.0
- Browser: firefox 171, chrome 190
- List of installed packages: https://github.com/.../main/package.json
Relevant log lines:
```
(super long error log lines pasted here)
```
</details>
-->
32 changes: 11 additions & 21 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,23 @@ about: Tell us about your awesome idea
labels: enhancement
---

<!-- THANK YOU for taking a moment to improve this project. 🤘🏿 You rock! 🎸 -->

<!--
Replace this comment with a clear and concise description of what the problem
is. If applicable, add screenshots to help explain the problem.
Replace this comment with a clear and concise description of what you're
suggesting. Be sure to include sample code, screenshots, related PR/issue
links, etc.
If you've encountered a bug, please report it as a bug instead of a feature
🚩 If you encountered a bug, please report it as a bug instead of a feature
request.
-->

### The solution

<!--
Replace this comment with a clear and concise description of what you want to
happen. If applicable, add screenshots to help explain your solution.
-->
<details><summary><strong>Alternatives and workarounds</strong></summary>
### Alternatives considered

<!--
Replace this comment with a clear and concise description of any alternative
solutions or features you've encountered and/or considered or N/A if there are
none.
-->

<details><summary><strong>Additional context</strong></summary>

<!--
Replace this comment with any other context or screenshots here.
-->
For posterity, uncomment this block and replace this text with a clear and
concise description of any alternative solutions you've encountered or any
temporary workarounds you've come up with.
</details>
-->
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
*.ignore
*.ignore.*
ignore.*
/dist
/build
/.vscode
/.vercel
/.env
/external-scripts/bin
/next-env.d.ts
/node_modules
/coverage
Empty file added .spellcheckignore
Empty file.
5 changes: 2 additions & 3 deletions .vercelignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
!/types

# Re-add root-level files
!/babel.config.js
!/.changelogrc.js
!/.gitignore
!/babel.config.js
!/next.config.js
!/package.json
!/package-lock.json
!/package.json
!/tsconfig.json

# Custom adds
Expand Down
Loading

0 comments on commit 84fac94

Please sign in to comment.