crisper
crisper copied to clipboard
[email protected] │ └─┬ [email protected] │ └─┬ [email protected] │ └── [email protected] Vulnerability: https://nvd.nist.gov/vuln/detail/CVE-2018-3750 Please update.
We are trying to implement CSP in our Polymer 2 application. The suggested way is by adding crisper to our polymer build. Unfortunately, when adding this additional step we get...
CSP blocks inline styles by default. It would be ideal if crisper either externalized CSS or utilized hashing. I'm guessing there might be some feasibility issues related to Polymer or...
It would be great to add support for [sourcemaps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) generation.
The code looks for "//" in the last line, to determine whether it's a comment: but it also matches e.g.; ```js (function() {"https://example.com"})() ``` No semicolon will be appended in...
Allows crisper to output to files in directories without needing those directories to exist prior to crisper running. Resolves #17
### Feature Request A nice feature would be the ability to set the javascript file path. ### Example Currently, the path for a js file from `/dist/views/index.html` is `index.js`. An...
Whenever there's a comment at the last line of a script, no final semicolon (`;`) will be added even if the script needs it. When concatenated with the next script,...
The idea is to loop through all lines backwards and skip those which are either empty, a single comment or part of a block comment. Then count the number of...
Running crisper --source file.html --html c.html --js c.js over a file that contains script with crossorigin attribute produces html code without crossorigin attribute. Source: ``` html (function() { 'use strict';...