Skip to content

Commit d1019cb

Browse files
authored
Merge pull request #13 from ioncakephper:chore/remove-script-unused
fix(release): configure release-please permissions and token
2 parents 97c9579 + 10f0b09 commit d1019cb

File tree

5 files changed

+27
-162
lines changed

5 files changed

+27
-162
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
- run: npm ci
3131
- run: npm publish
3232
env:
33-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
33+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22

33
## 1.0.0 (2025-11-02)
44

5-
65
### Features
76

8-
* **description:** Add config update command and split generation scripts ([b2912e3](https://github.com/ioncakephper/repo-description/commit/b2912e3ea54b3224bbf9c8fddc21335336b2c260))
9-
* **description:** Add config update command and split generation scripts ([e4d1cd9](https://github.com/ioncakephper/repo-description/commit/e4d1cd9e48c5bee3de0fe36afb6e762c5ac760ec))
10-
7+
- **description:** Add config update command and split generation scripts ([b2912e3](https://github.com/ioncakephper/repo-description/commit/b2912e3ea54b3224bbf9c8fddc21335336b2c260))
8+
- **description:** Add config update command and split generation scripts ([e4d1cd9](https://github.com/ioncakephper/repo-description/commit/e4d1cd9e48c5bee3de0fe36afb6e762c5ac760ec))
119

1210
### Bug Fixes
1311

14-
* **release:** configure release-please permissions and token ([8739c13](https://github.com/ioncakephper/repo-description/commit/8739c1346466aff5b986ec41ff278da6dad5100c))
12+
- **release:** configure release-please permissions and token ([8739c13](https://github.com/ioncakephper/repo-description/commit/8739c1346466aff5b986ec41ff278da6dad5100c))
1513

1614
## Changelog
1715

README.md

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -179,49 +179,49 @@ Options:
179179
180180
<!-- doc-gen COMMANDS format=list -->
181181
182-
- `describe` — Update repository descriptions in md.config.js transformDefaults for fileTreeExtended. (line [92](./package.json#L92))
182+
- `describe` — Update repository descriptions in md.config.js transformDefaults for fileTreeExtended. (line [93](./package.json#L93))
183183
184184
```bash
185185
node src/cli.js . --update-config md.config.js --transform-name fileTreeExtended
186186
```
187187

188-
- `describe:file` — Generates AI-powered descriptions for repository files and outputs them in various formats. (line [86](./package.json#L86))
188+
- `describe:file` — Generates AI-powered descriptions for repository files and outputs them in various formats. (line [87](./package.json#L87))
189189

190190
```bash
191191
node src/cli.js . --output descriptions.json
192192
```
193193

194-
- `docs` — Generates documentation by processing Markdown files with markdown-magic. (line [91](./package.json#L91))
194+
- `docs` — Generates documentation by processing Markdown files with markdown-magic. (line [92](./package.json#L92))
195195

196196
```bash
197197
npx [email protected] **/*.md -c md.config.js
198198
```
199199

200-
- `format` — Formats the codebase using Prettier. (line [89](./package.json#L89))
200+
- `format` — Formats the codebase using Prettier. (line [90](./package.json#L90))
201201

202202
```bash
203203
prettier --write .
204204
```
205205

206-
- `lint` — Lints the codebase for potential errors and style violations. (line [87](./package.json#L87))
206+
- `lint` — Lints the codebase for potential errors and style violations. (line [88](./package.json#L88))
207207

208208
```bash
209209
eslint src/ **/*.js **/*.json
210210
```
211211

212-
- `lint:fix` — Lints the codebase and automatically fixes fixable issues. (line [88](./package.json#L88))
212+
- `lint:fix` — Lints the codebase and automatically fixes fixable issues. (line [89](./package.json#L89))
213213

214214
```bash
215215
eslint --fix src/ **/*.js **/*.json
216216
```
217217

218-
- `prep` — Prepares the codebase by generating documentation, linting, and formatting. (line [90](./package.json#L90))
218+
- `prep` — Prepares the codebase by generating documentation, linting, and formatting. (line [91](./package.json#L91))
219219

220220
```bash
221221
npm run docs && npm run lint:fix && npm run format
222222
```
223223

224-
- `test` — Runs the test suite using Jest. (line [85](./package.json#L85))
224+
- `test` — Runs the test suite using Jest. (line [86](./package.json#L86))
225225

226226
```bash
227227
jest --passWithNoTests
@@ -245,6 +245,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
245245
- [@eslint/js](https://www.npmjs.com/package/%40eslint%2Fjs) — ESLint JavaScript language implementation
246246
- [babel-jest](https://www.npmjs.com/package/babel-jest) — Jest plugin to use babel for transformation.
247247
- [commander](https://www.npmjs.com/package/commander) — the complete solution for node.js command-line programs
248+
- [conventional-changelog-cli](https://www.npmjs.com/package/conventional-changelog-cli) — No description available
248249
- [dotenv](https://www.npmjs.com/package/dotenv) — Loads environment variables from .env file
249250
- [eslint](https://www.npmjs.com/package/eslint) — An AST-based pattern checker for JavaScript.
250251
- [eslint-config-prettier](https://www.npmjs.com/package/eslint-config-prettier) — Turns off all rules that are unnecessary or might conflict with Prettier.
@@ -280,20 +281,20 @@ repo-description/
280281
│ ├── cli.js
281282
│ ├── describe.js
282283
│ ├── index.js
283-
│ ├── refactor-package.js
284284
│ └── utils.js
285-
├── .env # Description unavailable.
285+
├── .env # Description unavailable.
286286
├── .gitignore
287-
├── .prettierrc.json # Description unavailable.
288-
├── babel.config.js # Description unavailable.
289-
├── CONTRIBUTING.md # Description unavailable.
290-
├── eslint.config.js # Description unavailable.
291-
├── LICENSE # Description unavailable.
292-
├── md.config.js # Description unavailable.
293-
├── package-lock.json # Description unavailable.
294-
├── package.json # Description unavailable.
295-
├── README.md # Description unavailable.
296-
└── RULES_OF_CONDUCT.md # Description unavailable.
287+
├── .prettierrc.json # Description unavailable.
288+
├── babel.config.js # Description unavailable.
289+
├── CHANGELOG.md
290+
├── CONTRIBUTING.md # Description unavailable.
291+
├── eslint.config.js # Description unavailable.
292+
├── LICENSE # Description unavailable.
293+
├── md.config.js # Description unavailable.
294+
├── package-lock.json # Description unavailable.
295+
├── package.json # Description unavailable.
296+
├── README.md # Description unavailable.
297+
└── RULES_OF_CONDUCT.md # Description unavailable.
297298
```
298299

299300
<!-- end-doc-gen -->

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
"@babel/preset-env": "^7.28.5",
6666
"@eslint/js": "^9.38.0",
6767
"babel-jest": "^30.2.0",
68+
"conventional-changelog-cli": "^5.0.1",
6869
"eslint": "^9.39.0",
6970
"eslint-config-prettier": "^10.1.8",
7071
"eslint-plugin-jsonc": "^2.21.0",
@@ -79,8 +80,7 @@
7980
"markdown-magic-transform-treefile-extended": "^1.2.1",
8081
"prettier": "^3.6.2",
8182
"prettier-plugin-packagejson": "^2.5.19",
82-
"yaml-eslint-parser": "^1.3.0",
83-
"conventional-changelog-cli": "^5.0.1"
83+
"yaml-eslint-parser": "^1.3.0"
8484
},
8585
"scriptsMeta": {
8686
"test": "Runs the test suite using Jest.",

src/refactor-package.js

Lines changed: 0 additions & 134 deletions
This file was deleted.

0 commit comments

Comments
 (0)