@programinglive/commiter 1.2.12 → 1.2.17

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.
@@ -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: '18'
23
- registry-url: 'https://registry.npmjs.org'
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