├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── license ├── package.json ├── readme.md ├── tasks ├── lib │ ├── RecessTask.js │ ├── reporters │ │ └── checkstyle.js │ └── util │ │ ├── log-error.js │ │ └── pad-line.js └── recess.js └── test ├── externalDependency └── includedElsewhere.less ├── fixtures ├── include.less ├── invalid.css ├── recess-checkstyle.json ├── valid.css └── valid.less └── grunt-recess.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/readme.md -------------------------------------------------------------------------------- /tasks/lib/RecessTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/tasks/lib/RecessTask.js -------------------------------------------------------------------------------- /tasks/lib/reporters/checkstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/tasks/lib/reporters/checkstyle.js -------------------------------------------------------------------------------- /tasks/lib/util/log-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/tasks/lib/util/log-error.js -------------------------------------------------------------------------------- /tasks/lib/util/pad-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/tasks/lib/util/pad-line.js -------------------------------------------------------------------------------- /tasks/recess.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./lib/RecessTask').registerWithGrunt; 3 | -------------------------------------------------------------------------------- /test/externalDependency/includedElsewhere.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/test/externalDependency/includedElsewhere.less -------------------------------------------------------------------------------- /test/fixtures/include.less: -------------------------------------------------------------------------------- 1 | @import "includedElsewhere"; -------------------------------------------------------------------------------- /test/fixtures/invalid.css: -------------------------------------------------------------------------------- 1 | #test { 2 | background-color: green; 3 | font-size: 0px; 4 | } -------------------------------------------------------------------------------- /test/fixtures/recess-checkstyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/test/fixtures/recess-checkstyle.json -------------------------------------------------------------------------------- /test/fixtures/valid.css: -------------------------------------------------------------------------------- 1 | .test-css { 2 | font-size: 14px; 3 | background-color: green; 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/valid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/test/fixtures/valid.less -------------------------------------------------------------------------------- /test/grunt-recess.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-recess/HEAD/test/grunt-recess.spec.js --------------------------------------------------------------------------------