Skip to content
This repository was archived by the owner on Jan 24, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@ module.exports = function(grunt) {
options: {
compress: true
}
},

unminified: {
files: {
'dist/makerstrap.css': 'less/build/makerstrap.less',
'dist/makerstrap.complete.css': 'less/build/makerstrap.complete.less',
},
options: {
compress: false
}
}

},

shell: {
Expand Down Expand Up @@ -81,7 +89,7 @@ module.exports = function(grunt) {

grunt.registerTask('default', ['less:development', 'shell:runServer', 'watch' ]);
grunt.registerTask('stats', ['less:development', 'filesize']);
grunt.registerTask('build', ['less:build', 'filesize']);
grunt.registerTask('build', ['less:build', 'less:unminified', 'filesize']);
grunt.registerTask('deploy', ['copy']);

};
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ This is for LESS importing:

```

### I want to see what's under the hood

Includes unminified CSS file so you can tweak and see how all the Makerstrap style properties are working.

```html
<link href="bower_components/makerstrap/makerstrap.css" rel="stylesheet">
```

## Contributing

### Development environment
Expand Down
2 changes: 1 addition & 1 deletion demo/compiled/demo.css

Large diffs are not rendered by default.

Loading