Bitbucket

时间:2018-04-16 12:27:45

标签: javascript webpack bitbucket-pipelines

BitBucket上的管道出现意外问题。我收到了这个错误:

ERROR in vendor.js from UglifyJs
Unexpected token: name (chatsBox) [vendor.js:26881,16]

所有分支机构都已成功构建。但是,当我想为这个构建一个管道时,我得到了这个错误。

这是JavaScript代码:

      if (~window.location.pathname.indexOf('/')) {
        let chatsBox = $('.conversations');
        var conversation = [].slice.apply(chatsBox);
        (function chatFeed(index) {

            var divs = Array.from(conversation[index].children);
            var count = 0;

            var cTimer = setInterval(function () {
                if (count === 4) {
                    chatFeed(index === 3 ? 0 : index + 1);
                    clearInterval(cTimer);
                }
                divs.forEach((e, idx) => {
                    e.style.opacity = count >= idx && count !== 4 ? '1' : '0';
                });
                count++;
            }, 1500);
        })(0);   
    }

在窗户上一切都很好。但是,由于通过Linux服务器构建的管道,此脚本或该变量只会导致问题。

有谁知道为什么以及如何解决这个问题?

0 个答案:

没有答案