@programinglive/commiter 1.2.12 → 1.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/bug_report.md +28 -28
- package/.github/ISSUE_TEMPLATE/config.yml +5 -5
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -20
- package/.github/PULL_REQUEST_TEMPLATE.md +24 -24
- package/.github/workflows/publish.yml +8 -5
- package/CHANGELOG.md +263 -235
- package/CODE_OF_CONDUCT.md +36 -36
- package/LICENSE +21 -21
- package/PRD.md +96 -96
- package/PUBLISH.md +142 -142
- package/README.md +217 -217
- package/SECURITY.md +30 -30
- package/commitlint.config.cjs +4 -4
- package/docs/CREATE_RELEASES.md +103 -103
- package/docs/QUICK_RELEASE_GUIDE.md +101 -101
- package/docs/release-notes/RELEASE_NOTES.md +217 -185
- package/index.js +199 -199
- package/netlify.toml +2 -2
- package/package.json +96 -96
- package/scripts/create-releases.js +219 -219
- package/scripts/release.cjs +258 -258
- package/scripts/update-release-notes.cjs +182 -182
- package/web/README.md +79 -79
- package/web/css/style.css +963 -963
- package/web/favicon.svg +10 -10
- package/web/index.html +510 -510
- package/web/js/script.js +256 -256
- package/web/og-image.svg +24 -24
- package/.netlify/netlify.toml +0 -25
- package/.netlify/state.json +0 -3
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Create a report to help us improve
|
|
4
|
-
labels: bug
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Describe the bug
|
|
8
|
-
A clear and concise description of what the bug is.
|
|
9
|
-
|
|
10
|
-
## To Reproduce
|
|
11
|
-
Steps to reproduce the behavior:
|
|
12
|
-
1. Go to '...'
|
|
13
|
-
2. Click on '...'
|
|
14
|
-
3. See error
|
|
15
|
-
|
|
16
|
-
## Expected behavior
|
|
17
|
-
A clear and concise description of what you expected to happen.
|
|
18
|
-
|
|
19
|
-
## Screenshots or logs
|
|
20
|
-
If applicable, add screenshots, logs, or stack traces to help explain your problem.
|
|
21
|
-
|
|
22
|
-
## Environment
|
|
23
|
-
- Package version:
|
|
24
|
-
- Node.js version:
|
|
25
|
-
- OS:
|
|
26
|
-
|
|
27
|
-
## Additional context
|
|
28
|
-
Add any other context about the problem here.
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
labels: bug
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Describe the bug
|
|
8
|
+
A clear and concise description of what the bug is.
|
|
9
|
+
|
|
10
|
+
## To Reproduce
|
|
11
|
+
Steps to reproduce the behavior:
|
|
12
|
+
1. Go to '...'
|
|
13
|
+
2. Click on '...'
|
|
14
|
+
3. See error
|
|
15
|
+
|
|
16
|
+
## Expected behavior
|
|
17
|
+
A clear and concise description of what you expected to happen.
|
|
18
|
+
|
|
19
|
+
## Screenshots or logs
|
|
20
|
+
If applicable, add screenshots, logs, or stack traces to help explain your problem.
|
|
21
|
+
|
|
22
|
+
## Environment
|
|
23
|
+
- Package version:
|
|
24
|
+
- Node.js version:
|
|
25
|
+
- OS:
|
|
26
|
+
|
|
27
|
+
## Additional context
|
|
28
|
+
Add any other context about the problem here.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
blank_issues_enabled: false
|
|
2
|
-
contact_links:
|
|
3
|
-
- name: Security Report
|
|
4
|
-
url: https://github.com/programinglive/commiter/security/policy
|
|
5
|
-
about: Please read our security policy before reporting vulnerabilities.
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Security Report
|
|
4
|
+
url: https://github.com/programinglive/commiter/security/policy
|
|
5
|
+
about: Please read our security policy before reporting vulnerabilities.
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Feature request
|
|
3
|
-
about: Suggest an idea for this project
|
|
4
|
-
labels: enhancement
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Summary
|
|
8
|
-
Describe the feature you would like to see.
|
|
9
|
-
|
|
10
|
-
## Problem or Use Case
|
|
11
|
-
What problem does this feature solve? Why is it needed?
|
|
12
|
-
|
|
13
|
-
## Proposed Solution
|
|
14
|
-
Describe your proposed solution or implementation ideas.
|
|
15
|
-
|
|
16
|
-
## Alternatives
|
|
17
|
-
List any alternative solutions or features you've considered.
|
|
18
|
-
|
|
19
|
-
## Additional context
|
|
20
|
-
Add any other context, mockups, or screenshots about the feature request here.
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
labels: enhancement
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Summary
|
|
8
|
+
Describe the feature you would like to see.
|
|
9
|
+
|
|
10
|
+
## Problem or Use Case
|
|
11
|
+
What problem does this feature solve? Why is it needed?
|
|
12
|
+
|
|
13
|
+
## Proposed Solution
|
|
14
|
+
Describe your proposed solution or implementation ideas.
|
|
15
|
+
|
|
16
|
+
## Alternatives
|
|
17
|
+
List any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
## Additional context
|
|
20
|
+
Add any other context, mockups, or screenshots about the feature request here.
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# Pull Request Checklist
|
|
2
|
-
|
|
3
|
-
## Summary
|
|
4
|
-
|
|
5
|
-
Describe the changes in this pull request.
|
|
6
|
-
|
|
7
|
-
## Related Issues
|
|
8
|
-
|
|
9
|
-
Link related issues (e.g. closes #123).
|
|
10
|
-
|
|
11
|
-
## Testing
|
|
12
|
-
|
|
13
|
-
- [ ] `npm install`
|
|
14
|
-
- [ ] `npm test`
|
|
15
|
-
- [ ] `npm run release -- --dry-run` (if release-related)
|
|
16
|
-
|
|
17
|
-
## Checklist
|
|
18
|
-
|
|
19
|
-
- [ ] I've read the [Code of Conduct](../CODE_OF_CONDUCT.md)
|
|
20
|
-
- [ ] I've read the [Contributing Guidelines](../CONTRIBUTING.md)
|
|
21
|
-
- [ ] My commits follow the Conventional Commits format (`type(scope): subject`)
|
|
22
|
-
- [ ] Documentation has been updated if needed
|
|
23
|
-
- [ ] New dependencies are justified and added to `package.json`
|
|
24
|
-
- [ ] No `any` types were introduced (TypeScript rule)
|
|
1
|
+
# Pull Request Checklist
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
Describe the changes in this pull request.
|
|
6
|
+
|
|
7
|
+
## Related Issues
|
|
8
|
+
|
|
9
|
+
Link related issues (e.g. closes #123).
|
|
10
|
+
|
|
11
|
+
## Testing
|
|
12
|
+
|
|
13
|
+
- [ ] `npm install`
|
|
14
|
+
- [ ] `npm test`
|
|
15
|
+
- [ ] `npm run release -- --dry-run` (if release-related)
|
|
16
|
+
|
|
17
|
+
## Checklist
|
|
18
|
+
|
|
19
|
+
- [ ] I've read the [Code of Conduct](../CODE_OF_CONDUCT.md)
|
|
20
|
+
- [ ] I've read the [Contributing Guidelines](../CONTRIBUTING.md)
|
|
21
|
+
- [ ] My commits follow the Conventional Commits format (`type(scope): subject`)
|
|
22
|
+
- [ ] Documentation has been updated if needed
|
|
23
|
+
- [ ] New dependencies are justified and added to `package.json`
|
|
24
|
+
- [ ] No `any` types were introduced (TypeScript rule)
|
|
@@ -19,8 +19,13 @@ jobs:
|
|
|
19
19
|
- name: Setup Node.js
|
|
20
20
|
uses: actions/setup-node@v4
|
|
21
21
|
with:
|
|
22
|
-
node-version: '
|
|
23
|
-
|
|
22
|
+
node-version: '20'
|
|
23
|
+
|
|
24
|
+
- name: Update npm and configure registry
|
|
25
|
+
run: |
|
|
26
|
+
npm install -g npm@latest
|
|
27
|
+
npm config set registry https://registry.npmjs.org/
|
|
28
|
+
npm config set //registry.npmjs.org/:_authToken ""
|
|
24
29
|
|
|
25
30
|
- name: Install dependencies
|
|
26
31
|
run: npm ci
|
|
@@ -29,6 +34,4 @@ jobs:
|
|
|
29
34
|
run: npm test
|
|
30
35
|
|
|
31
36
|
- name: Publish to NPM
|
|
32
|
-
run: npm publish --access public
|
|
33
|
-
env:
|
|
34
|
-
NODE_AUTH_TOKEN: ${{ secrets.COMMITER_TOKEN }}
|
|
37
|
+
run: npm publish --provenance --access public
|