livescript-loader icon indicating copy to clipboard operation
livescript-loader copied to clipboard

livescript loader for webpack

Results 5 livescript-loader issues
Sort by recently updated
recently updated
newest added

Hello, Because Webpack (or more precisely loader-utils) will remove the parseQuery() function with the next major version, I upgraded both the livescript-loader as well as the dependencies. > DeprecationWarning: loaderUtils.parseQuery()...

As [email protected] is the dependency of this project, users cannot upgrade their LiveScript version. Please make LiveScript a peer dependency like every other loader.

I am using livescript-loader 0.1.5 with default options (map: "linked"). In compiled output there is source map linked using full-system path (see bellow). Is it correct? This completely breaks long-term...

I use LiveScript loader with babel loader this way: ``` javascript { test: /\.ls$/, loader: 'babel?presets[]=react,presets[]=es2015!livescript' }, ``` This configuration throws an exception: ``` bash ERROR in ./client/web/public/app.ls Module build...

This loader works great when parsing a file that only contains LiveScript, but when parsing LiveScript in a `script` element, such as as when used with `vue-loader`, [it's breaking](https://github.com/vuejs/vue-loader/issues/135) because...