-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Remove the postinstall script to prevent install issues (#138)
- Loading branch information
1 parent
1e77e8c
commit a2b2839
Showing
3 changed files
with
73 additions
and
54 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
const generate = require('videojs-generate-karma-config'); | ||
|
||
module.exports = function(config) { | ||
config = generate(config); | ||
// any custom stuff here! | ||
|
||
// see https://github.com/videojs/videojs-generate-karma-config | ||
// for options | ||
const options = {}; | ||
|
||
config = generate(config, options); | ||
|
||
// any other custom stuff not supported by options here! | ||
}; | ||
|