Skip to content

Commit 6ad1721

Browse files
committed
chore(repo): update CHANGELOGs with missing info, add newline to CHANGELOG gen
1 parent 5b45582 commit 6ad1721

File tree

7 files changed

+20
-36
lines changed

7 files changed

+20
-36
lines changed

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,15 @@
6161
},
6262
"lint-staged": {
6363
"*.{ts,js}": [
64-
"eslint --fix"
64+
"eslint --cache --fix"
6565
],
66-
"*.{ts,js,json,yaml,yml,md}": [
66+
"**/(package|tsconfig(.*)?).json": [
67+
"prettier --write"
68+
],
69+
"(pnpm-workspace|.github/**/*).{yml,yaml}": [
70+
"prettier --write"
71+
],
72+
"((.github/**/*)|(README|CHANGELOG)|(**/(README|CHANGELOG))).md": [
6773
"prettier --write"
6874
]
6975
},

packages/alias/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ _2021-07-16_
66

77
### Updates
88

9-
- docs
9+
- docs: add helpful notes (#612)
1010

1111
## v3.1.3
1212

packages/dynamic-import-vars/CHANGELOG.md

+4-23
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,16 @@ _2021-07-15_
66

77
### Bugfixes
88

9-
- fix
10-
- fix
11-
12-
### Features
13-
14-
- feat
15-
16-
### Updates
17-
18-
- docs
19-
- chore: update dependencies (26f9b6c)
9+
- fix: allow ./${var}.suffix.js (#834)
10+
- fix: Give default promise rejection timing parity with cases (#825)
2011

2112
## v1.2.0
2213

2314
_2021-07-15_
2415

25-
### Bugfixes
16+
### Notes
2617

27-
- fix
28-
- fix
29-
30-
### Features
31-
32-
- feat
33-
34-
### Updates
35-
36-
- docs
37-
- chore: update dependencies (26f9b6c)
18+
This release is identical to v1.3.0. Duplicate versions were created as the result of erroneous Workflows.
3819

3920
## v1.1.7
4021

packages/node-resolve/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ _2021-07-24_
66

77
### Bugfixes
88

9-
- fix
9+
- fix: Fix bug where JS import was converted to a TS import, resulting in an error when using export maps (#921)
1010

1111
## v13.0.3
1212

1313
_2021-07-24_
1414

1515
### Bugfixes
1616

17-
- fix
17+
- fix: handle browser-mapped paths correctly in nested contexts (#920)
1818

1919
## v13.0.2
2020

2121
_2021-07-15_
2222

2323
### Bugfixes
2424

25-
- fix
25+
- fix: handle "package.json" being in path (#927)
2626

2727
## v13.0.1
2828

packages/pluginutils/CHANGELOG.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ _2021-07-16_
66

77
### Bugfixes
88

9-
- fix
10-
11-
### Updates
12-
13-
- chore
9+
- fix: remove extraneous peer dependency requirement (#845)
1410

1511
## v4.1.0
1612

packages/replace/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ _2021-07-16_
66

77
### Breaking Changes
88

9-
- fix
9+
- fix!: issues with nested objects replacements (#903)
1010

1111
## v2.4.2
1212

scripts/release.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ const updateChangelog = (commits: Commit[], cwd: string, shortName: string, vers
173173
}
174174

175175
log(chalk`{blue Updating} CHANGELOG.md`);
176-
const content = [title, newLog, oldNotes].filter(Boolean).join('\n\n');
176+
let content = [title, newLog, oldNotes].filter(Boolean).join('\n\n');
177+
if (!content.endsWith('\n')) content += '\n';
177178
writeFileSync(logPath, content, 'utf-8');
178179
};
179180

0 commit comments

Comments
 (0)