We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efca49f + 89e1548 commit 0467062Copy full SHA for 0467062
.travis.yml
@@ -1,17 +1,20 @@
1
+
2
3
before_install:
- - sudo add-apt-repository ppa:sauce/ppa -y
- - sudo apt-get update -q
4
- - sudo apt-get install flvtool2 -y
5
-matrix:
+ - gem install flvtool2
6
+jobs:
7
include:
8
- os: linux
9
env: NODE_VERSION=8
10
11
env: NODE_VERSION=10
12
13
env: NODE_VERSION=11
14
15
script:
16
- tools/test-travis.sh
17
18
addons:
19
apt:
20
packages:
index.js
@@ -1 +1 @@
-module.exports = process.env.FLUENTFFMPEG_COV ? require('./lib-cov/fluent-ffmpeg') : require('./lib/fluent-ffmpeg');
+module.exports = require(`./lib${process.env.FLUENTFFMPEG_COV ? '-cov' : ''}/fluent-ffmpeg`);
0 commit comments