wishthis/node_modules/less/test/test-es6.ts
2023-08-17 11:47:40 +02:00

17 lines
No EOL
346 B
TypeScript

// https://github.com/less/less.js/issues/3533
console.log('Testing ES6 imports...')
import less from '..';
const lessRender = less.render;
// then I call lessRender on something
lessRender(`
body {
a: 1;
b: 2;
c: 30;
d: 4;
}`, {sourceMap: {}}, function(error: any, output: any) {
if (error)
console.error(error)
})