File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+ docker :
5+ - image : circleci/node:11
6+ steps :
7+ - checkout
8+ - run :
9+ name : Install npm packages
10+ command : npm install
11+ - run :
12+ name : Run lint
13+ command : npm run lint
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ const getDevExtremeVersion = () => {
135135
136136const setWidgetsOption = ( options , version ) => {
137137 const widgets = options . widgets ;
138- const widgetsArgumentMinVersion = '19.2.3'
138+ const widgetsArgumentMinVersion = '19.2.3' ;
139139 const widgetsOptionAvailable = version === 'latest' || semver . gte ( version , widgetsArgumentMinVersion ) ;
140140 if ( widgets && ! widgetsOptionAvailable ) {
141141 console . log ( `The "--widgets" argument is supported only starting with v${ widgetsArgumentMinVersion } and will be ignored.` ) ;
You can’t perform that action at this time.
0 commit comments