File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 1
1
frontend-build
2
2
==============
3
3
4
- |Build Status | |Codecov | |license |
4
+ |Build Status | |npm_version | | Codecov | |license |
5
5
6
6
The purpose of this package is to
7
7
provide a common sense foundation and setup for frontend projects including:
@@ -108,3 +108,4 @@ you will need to run it every time you make changes to this project.
108
108
:target: https://codecov.io/gh/edx/frontend-base
109
109
.. |license | image :: https://img.shields.io/npm/l/@edx/frontend-base.svg
110
110
:target: https://github.com/edx/frontend-base/blob/master/LICENSE
111
+ .. |npm_version | image :: https://img.shields.io/npm/v/@edx/frontend-component-header.svg
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ const { PROJECT_ROOT } = require('./paths');
7
7
module . exports = ( commandName ) => {
8
8
const {
9
9
globSearchPattern,
10
- suggestedName,
11
10
configFile,
12
11
} = presets [ commandName ] ;
13
12
const globOptions = {
Original file line number Diff line number Diff line change @@ -7,27 +7,22 @@ const getConfigFilepath = filename =>
7
7
module . exports = {
8
8
eslint : {
9
9
globSearchPattern : '.eslintrc*' ,
10
- suggestedName : '.eslintrc.js' ,
11
10
configFile : getConfigFilepath ( '.eslintrc.js' ) ,
12
11
} ,
13
12
jest : {
14
13
globSearchPattern : 'jest.config.js' ,
15
- suggestedName : 'jest.config.js' ,
16
14
configFile : getConfigFilepath ( 'jest.config.js' ) ,
17
15
} ,
18
16
babel : {
19
17
globSearchPattern : 'babel.config.js' ,
20
- suggestedName : 'babel.config.js' ,
21
18
configFile : getConfigFilepath ( 'babel.config.js' ) ,
22
19
} ,
23
20
'webpack-prod' : {
24
21
globSearchPattern : 'webpack.prod.config.js' ,
25
- suggestedName : 'webpack.prod.config.js' ,
26
22
configFile : getConfigFilepath ( 'webpack.prod.config.js' ) ,
27
23
} ,
28
24
'webpack-dev' : {
29
25
globSearchPattern : 'webpack.dev.config.js' ,
30
- suggestedName : 'webpack.dev.config.js' ,
31
26
configFile : getConfigFilepath ( 'webpack.dev.config.js' ) ,
32
27
} ,
33
28
} ;
You can’t perform that action at this time.
0 commit comments