Ferdinand Prantl

Results 192 comments of Ferdinand Prantl

The `` tag in your HTML markup is not closed.

You could add single quotes to the lexer and instead of recognising them as string declarators, you would just make the tokenisation fail. I did [something similar for JavaScript-like comments](https://github.com/prantlf/jsonlint/blob/v6.3.1/src/jsonlint.l#L26-L30),...

I needed some bugfixes and extensions to `jsonlint` and did them in [my fork](https://github.com/prantlf/jsonlint). I released the changes as a new NPM module [`@prantlf/jsonlint`](https://www.npmjs.com/package/@prantlf/jsonlint). Fixing the problem with properties named...

I needed some bugfixes and extensions to `jsonlint` and did them in [my fork](https://github.com/prantlf/jsonlint). I released the changes as a new NPM module [`@prantlf/jsonlint`](https://www.npmjs.com/package/@prantlf/jsonlint). Completing the `package.json` was one of...

#55 integrates `serve-static`.

This is an interesting idea, but it will not work in general. This would work only if you use only JavaScript imports. As soon as you start using RequireJS plugins...

I see, an inspiring approach. It could solve the performance problem that I am afraid of, once I introduce the babelification plugin. (I am actually going to use `requirejs-babel7` as...

Let me give more detail about the problem that I face. Pure AMD modules would work well, converted to ESM and loaded by the import statement. However, there are RequireJS...

Currently all dependencies are required immediately in the main `define` function of the `hbs` module. The plugin configuration is not accessible there yet. That's why the `config.hbs.handlebarsPath` setting, which gets...