Change from pnpm to npm, add ./link.sh shortcut for npm style package linking
[clean-css.git] / issue_template.md
1 ### Precheck
2  
3 * Do a quick search and make sure a bug has not yet been reported;
4 * do a quick check if the bug still exists in the latest patch version;
5 * finally, be nice and have fun!
6
7 ### Environment
8
9 * clean-css version - `npm ls clean-css`:
10 * node.js version - `node -v`:
11 * operating system:
12
13 ### Configuration options
14
15 ```js
16 var CleanCSS = require('clean-css');
17 new CleanCSS({
18   // compatibility: 'ie8',
19   // format: 'keep-breaks',
20   // level: 2
21 })
22 ```
23
24 ### Input CSS
25
26 ```css
27 /* the shorter the better! */
28 ```
29
30 ### Actual output CSS
31
32 ```css
33 ```
34
35 ### Expected output CSS
36
37 ```css
38 ```