升级ember babel的最佳方法

时间:2018-04-09 18:42:29

标签: ember.js ember-cli

我在我的embr应用程序中安装了一个插件。之后我收到警告:

<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<video id="video" width="320" height="240"></video>

<script>

    if(Hls.isSupported()) {
        var video = document.getElementById('video');
        var hls = new Hls();
        hls.loadSource("https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8");
        hls.attachMedia(video);
        hls.on(Hls.Events.MANIFEST_PARSED,function() {
            video.play();
        });
    };

 </script>

升级它最好的是什么?

2 个答案:

答案 0 :(得分:1)

升级有问题的插件并提交拉取请求。

答案 1 :(得分:0)

如果升级的余烬版本'ember-cli-babel'可能没有同时升级,则只需安装最新的稳定版本

ember install ember-cli-babel