Skip to content

Commit 1fc021b

Browse files
authored
Fix lint and add CircleCI config (#114)
1 parent db6e600 commit 1fc021b

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.circleci/config.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

commands/themebuider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const getDevExtremeVersion = () => {
135135

136136
const 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.`);

0 commit comments

Comments
 (0)