mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-11 16:14:08 +01:00
2c76673f70
## About The Pull Request - Update Biome to 2.4.16 - Update prettier to 3.8.3 - Apply biome linting rules to a bunch of files - Convert some files from common-js to es module ## Changelog N/A
22 lines
425 B
JavaScript
22 lines
425 B
JavaScript
import assert from 'node:assert/strict';
|
|
import { changelogToYml } from './autoChangelog.js';
|
|
import { parseChangelog } from './changelogParser.js';
|
|
|
|
assert.equal(
|
|
changelogToYml(
|
|
parseChangelog(`
|
|
My cool PR!
|
|
:cl: DenverCoder9
|
|
add: Adds new stuff
|
|
add: Adds more stuff
|
|
/:cl:
|
|
`),
|
|
),
|
|
|
|
`author: "DenverCoder9"
|
|
delete-after: True
|
|
changes:
|
|
- rscadd: "Adds new stuff"
|
|
- rscadd: "Adds more stuff"`,
|
|
);
|