Skip to content

Commit 292669d

Browse files
Merge branch 'master' into feat/update-to-webpack-5
2 parents ef5131f + 6fe9fb7 commit 292669d

5 files changed

Lines changed: 29 additions & 2 deletions

File tree

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@
3333
"contributions": [
3434
"code"
3535
]
36+
},
37+
{
38+
"login": "kherock",
39+
"name": "Kyle Herock",
40+
"avatar_url": "https://avatars.githubusercontent.com/u/4993980?v=4",
41+
"profile": "https://github.com/kherock",
42+
"contributions": [
43+
"code"
44+
]
3645
}
3746
],
3847
"contributorsPerLine": 7

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# v0.7.1 (Tue May 11 2021)
2+
3+
:tada: This release contains work from a new contributor! :tada:
4+
5+
Thank you, Kyle Herock ([@kherock](https://github.com/kherock)), for all your work!
6+
7+
#### 🐛 Bug Fix
8+
9+
- Include dotfiles in micromatch globs [#34](https://github.com/hipstersmoothie/react-docgen-typescript-plugin/pull/34) ([@kherock](https://github.com/kherock))
10+
11+
#### Authors: 1
12+
13+
- Kyle Herock ([@kherock](https://github.com/kherock))
14+
15+
---
16+
117
# v0.7.0 (Fri Dec 04 2020)
218

319
#### 🚀 Enhancement

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
8080
<tr>
8181
<td align="center"><a href="http://hipstersmoothie.com/"><img src="https://avatars3.githubusercontent.com/u/1192452?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrew Lisowski</b></sub></a><br /><a href="https://github.com/hipstersmoothie/react-docgen-typescript-plugin/commits?author=hipstersmoothie" title="Code">💻</a> <a href="#design-hipstersmoothie" title="Design">🎨</a> <a href="https://github.com/hipstersmoothie/react-docgen-typescript-plugin/commits?author=hipstersmoothie" title="Documentation">📖</a> <a href="#ideas-hipstersmoothie" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-hipstersmoothie" title="Maintenance">🚧</a> <a href="#infra-hipstersmoothie" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/hipstersmoothie/react-docgen-typescript-plugin/commits?author=hipstersmoothie" title="Tests">⚠️</a></td>
8282
<td align="center"><a href="http://shilman.net/"><img src="https://avatars2.githubusercontent.com/u/488689?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Shilman</b></sub></a><br /><a href="https://github.com/hipstersmoothie/react-docgen-typescript-plugin/commits?author=shilman" title="Code">💻</a></td>
83+
<td align="center"><a href="https://github.com/kherock"><img src="https://avatars.githubusercontent.com/u/4993980?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Kyle Herock</b></sub></a><br /><a href="https://github.com/hipstersmoothie/react-docgen-typescript-plugin/commits?author=kherock" title="Code">💻</a></td>
8384
</tr>
8485
</table>
8586

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-docgen-typescript-plugin",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "A webpack plugin to inject react typescript docgen information.",
55
"license": "MIT",
66
"repository": "hipstersmoothie/react-docgen-typescript-plugin",

src/plugin.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ function getTSConfigFile(tsconfigPath: string): ts.ParsedCommandLine {
5959

6060
/** Create a glob matching function. */
6161
const matchGlob = (globs?: string[]) => {
62-
const matchers = (globs || []).map((g) => matcher(g));
62+
const matchers = (globs || []).map((g) => matcher(g, { dot: true }));
63+
6364
return (filename: string) =>
6465
Boolean(filename && matchers.find((match) => match(filename)));
6566
};

0 commit comments

Comments
 (0)