mirror of
https://github.com/videojs/video.js.git
synced 2024-12-04 10:34:51 +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);
|