Skip to content

Commit 64a8331

Browse files
feat: initial functionality ✨
1 parent c1e9cd5 commit 64a8331

23 files changed

+168
-95
lines changed

β€Ž.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"contributorsSortAlphabetically": true,
22-
"projectName": "await-lazy-properties",
22+
"projectName": "all-properties-lazy",
2323
"projectOwner": "JoshuaKGoldberg",
2424
"repoType": "github",
2525
"commitConvention": "angular"

β€Ž.github/CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thanks for your interest in contributing to `await-lazy-properties`! πŸ’–
3+
Thanks for your interest in contributing to `all-properties-lazy`! πŸ’–
44

55
> After this page, see [DEVELOPMENT.md](./DEVELOPMENT.md) for local development instructions.
66
@@ -10,7 +10,7 @@ This project contains a [Contributor Covenant code of conduct](./CODE_OF_CONDUCT
1010

1111
## Reporting Issues
1212

13-
Please do [report an issue on the issue tracker](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues/new/choose) if there's any bugfix, documentation improvement, or general enhancement you'd like to see in the repository! Please fully fill out all required fields in the most appropriate issue form.
13+
Please do [report an issue on the issue tracker](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues/new/choose) if there's any bugfix, documentation improvement, or general enhancement you'd like to see in the repository! Please fully fill out all required fields in the most appropriate issue form.
1414

1515
## Sending Contributions
1616

@@ -22,8 +22,8 @@ There are two steps involved:
2222

2323
### Finding an Issue
2424

25-
With the exception of very small typos, all changes to this repository generally need to correspond to an [unassigned open issue marked as `status: accepting prs` on the issue tracker](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aissue+is%3Aopen+label%3A%22status%3A+accepting+prs%22+no%3Aassignee+).
26-
If this is your first time contributing, consider searching for [unassigned issues that also have the `good first issue` label](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22+label%3A%22status%3A+accepting+prs%22+no%3Aassignee+).
25+
With the exception of very small typos, all changes to this repository generally need to correspond to an [unassigned open issue marked as `status: accepting prs` on the issue tracker](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aissue+is%3Aopen+label%3A%22status%3A+accepting+prs%22+no%3Aassignee+).
26+
If this is your first time contributing, consider searching for [unassigned issues that also have the `good first issue` label](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22+label%3A%22status%3A+accepting+prs%22+no%3Aassignee+).
2727
If the issue you'd like to fix isn't found on the issue, see [Reporting Issues](#reporting-issues) for filing your own (please do!).
2828

2929
#### Issue Claiming
@@ -42,7 +42,7 @@ Be sure to fill out the pull request template's requested information -- otherwi
4242
PRs are also expected to have a title that adheres to [conventional commits](https://www.conventionalcommits.org/en/v1.0.0).
4343
Only PR titles need to be in that format, not individual commits.
4444
Don't worry if you get this wrong: you can always change the PR title after sending it.
45-
Check [previously merged PRs](https://github.com/JoshuaKGoldberg/await-lazy-properties/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference.
45+
Check [previously merged PRs](https://github.com/JoshuaKGoldberg/all-properties-lazy/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference.
4646

4747
#### Draft PRs
4848

β€Ž.github/DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
44

55
```shell
6-
git clone https://github.com/(your-name-here)/await-lazy-properties
7-
cd await-lazy-properties
6+
git clone https://github.com/(your-name-here)/all-properties-lazy
7+
cd all-properties-lazy
88
pnpm install
99
```
1010

β€Ž.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- Note: Please must use one of our issue templates to file an issue! πŸ›‘ -->
2-
<!-- πŸ‘‰ https://github.com/JoshuaKGoldberg/await-lazy-properties/issues/new/choose πŸ‘ˆ -->
2+
<!-- πŸ‘‰ https://github.com/JoshuaKGoldberg/all-properties-lazy/issues/new/choose πŸ‘ˆ -->
33
<!-- **Issues that should have been filed with a template will be closed without action, and we will ask you to use a template.** -->
44

55
<!-- This blank issue template is only for issues that don't fit any of the templates. -->

β€Ž.github/ISSUE_TEMPLATE/01-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
required: true
88
- label: I have pulled the latest `main` branch of the repository.
99
required: true
10-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aissue) and found none that matched my issue.
10+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aissue) and found none that matched my issue.
1111
required: true
1212
type: checkboxes
1313
- attributes:

β€Ž.github/ISSUE_TEMPLATE/02-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
options:
66
- label: I have pulled the latest `main` branch of the repository.
77
required: true
8-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aissue) and found none that matched my issue.
8+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aissue) and found none that matched my issue.
99
required: true
1010
type: checkboxes
1111
- attributes:

β€Ž.github/ISSUE_TEMPLATE/03-feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
options:
66
- label: I have pulled the latest `main` branch of the repository.
77
required: true
8-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aissue) and found none that matched my issue.
8+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aissue) and found none that matched my issue.
99
required: true
1010
type: checkboxes
1111
- attributes:

β€Ž.github/ISSUE_TEMPLATE/04-tooling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
required: true
88
- label: I have pulled the latest `main` branch of the repository.
99
required: true
10-
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aissue) and found none that matched my issue.
10+
- label: I have [searched for related issues](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aissue) and found none that matched my issue.
1111
required: true
1212
type: checkboxes
1313
- attributes:

β€Ž.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!-- πŸ‘‹ Hi, thanks for sending a PR to await-lazy-properties! πŸ’–.
1+
<!-- πŸ‘‹ Hi, thanks for sending a PR to all-properties-lazy! πŸ’–.
22
Please fill out all fields below and make sure each item is true and [x] checked.
33
Otherwise we may not be able to review your PR. -->
44

55
## PR Checklist
66

77
- [ ] Addresses an existing open issue: fixes #000
8-
- [ ] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/await-lazy-properties/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
9-
- [ ] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/await-lazy-properties/blob/main/.github/CONTRIBUTING.md) were taken
8+
- [ ] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/all-properties-lazy/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
9+
- [ ] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/all-properties-lazy/blob/main/.github/CONTRIBUTING.md) were taken
1010

1111
## Overview
1212

β€Ž.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ jobs:
5656
- uses: actions/checkout@v4
5757
- uses: ./.github/actions/prepare
5858
- run: pnpm run test --coverage
59-
- if: always()
59+
- env:
60+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
61+
if: always()
6062
uses: codecov/codecov-action@v3
6163
type_check:
6264
name: Type Check

0 commit comments

Comments
Β (0)