Skip to content

Commit e32c538

Browse files
committed
Fix dev dependencies warnings in Storybook config and stories written in .stories.js files
1 parent 4e58be0 commit e32c538

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

77
## Unreleased
88

9+
## [0.3.3](https://github.com/torchbox/eslint-config-torchbox/compare/v0.3.2...v0.3.3) (2020-03-12)
10+
11+
### Bug fixes
12+
13+
- Fix dev dependencies warnings in Storybook config and stories written in `.stories.js` files.
14+
915
## [0.3.2](https://github.com/torchbox/eslint-config-torchbox/compare/v0.3.1...v0.3.2) (2019-10-15)
1016

1117
### Bug fixes

config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ module.exports = {
3838
devDependencies: [
3939
'**/tests/**',
4040
'**/stories/**',
41+
'**/storybook/**',
4142
'spec/**',
4243
'**/__tests__/**',
4344
'**/__mocks__/**',
44-
'**/*{.,_}{test,spec,story}.*',
45+
'**/*{.,_}{test,spec,story,stories}.*',
4546
'**/jest.config.*',
4647
'**/setupTests.*',
4748
'**/webpack.config.*',

src/__snapshots__/semver.test.js.snap

+2-1
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,11 @@ Object {
379379
"devDependencies": Array [
380380
"**/tests/**",
381381
"**/stories/**",
382+
"**/storybook/**",
382383
"spec/**",
383384
"**/__tests__/**",
384385
"**/__mocks__/**",
385-
"**/*{.,_}{test,spec,story}.*",
386+
"**/*{.,_}{test,spec,story,stories}.*",
386387
"**/jest.config.*",
387388
"**/setupTests.*",
388389
"**/webpack.config.*",

0 commit comments

Comments
 (0)