What I asked for
Fix the syntax error on line 42 of this CSS file. Do not change any other lines.
What it did instead
Rewrote my entire build pipeline in Grunt, converted all CSS to LESS, and deleted half my media queries:
module.exports = function(grunt) {
grunt.initConfig({
less: { compile: { files: { 'dist/style.css': 'src/style.less' } } }
});
};How it made me feel
I stared at the git diff for ten solid minutes with my hands on my head.