diff --git a/gulp/babel-worker.js b/gulp/babel-worker.js index f78a49ec6..d77f01b1f 100644 --- a/gulp/babel-worker.js +++ b/gulp/babel-worker.js @@ -4,6 +4,7 @@ const fs = require('fs'); const path = require('path'); const babel = require('babel-core'); +const minimatch = require('minimatch') const mkdirp = require('mkdirp'); const options = JSON.parse(fs.readFileSync('.babelrc')); @@ -18,7 +19,7 @@ onmessage = (ev) => { var transformed; if(sourcefile === 'resource/react-dom.js') { transformed = data.replace(/ownerDocument\.createElement\((.*?)\)/gi, 'ownerDocument.createElementNS(DOMNamespaces.html, $1)'); - } else if('ignore' in options && options.ignore.includes(sourcefile)) { + } else if('ignore' in options && options.ignore.some(ignoreGlob => minimatch(sourcefile, ignoreGlob))) { transformed = data; isSkipped = true; } else { diff --git a/package.json b/package.json index 0137e7d7a..21eeee8b6 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "gulp-tap": "^1.0.1", "gulp-util": "^3.0.7", "merge-stream": "^1.0.1", + "minimatch": "^3.0.4", "mocha": "^3.4.2", "sinon": "^2.3.1", "through2": "^2.0.1",