Skip to content

Commit bd6e04a

Browse files
tejasbubaneSleeplessByte
authored andcommitted
Convert scripts to ES6 (exercism#687)
* Convert scripts to ES6 Use @babel/node to run them. * Fix comments in scripts
1 parent 274140d commit bd6e04a

9 files changed

Lines changed: 1940 additions & 1752 deletions

File tree

.travis.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
---
22
language: node_js
33
node_js:
4-
- 'lts/*'
4+
- 'lts/*'
55
sudo: false
6+
67
before_install:
7-
- npm i -g npm@latest
8+
- npm i -g npm@latest
9+
810
install:
9-
- npm ci
11+
- npm ci
12+
13+
before_script:
14+
- bin/fetch-configlet
15+
1016
script:
11-
- bin/fetch-configlet
12-
- bin/configlet lint .
13-
- scripts/ci
17+
- bin/configlet lint .
18+
- npx @babel/node scripts/ci

0 commit comments

Comments
 (0)