mirror of
https://github.com/videojs/video.js.git
synced 2024-12-10 11:10:19 +02:00
10 lines
132 B
JavaScript
10 lines
132 B
JavaScript
/* eslint-disable no-console */
|
|
try {
|
|
require('../../');
|
|
} catch (e) {
|
|
console.error(e);
|
|
process.exit(1);
|
|
}
|
|
|
|
process.exit(0);
|