UNPKG

393 BJavaScriptView Raw
1module.exports = function (name) {
2 console.warn([
3 'It looks like you have required "' + name + '" in one ',
4 'of your scripts, except you are not using texel to ',
5 'run and bundle your code. The texel development tools rely ',
6 'on texel and its development server to work correctly, ',
7 'for more details see here:\n https://www.npmjs.com/package/texel'
8 ].join(''));
9};