Adding unminified CSS to dist output, fixes #506

This commit is contained in:
Gion Kunz 2016-01-24 11:44:13 +01:00
parent 7e3d946cb8
commit 9a7d01bb30
2 changed files with 8 additions and 2 deletions

View File

@ -12,13 +12,13 @@ default:
# create the library
build:
- 'clean:dist'
- 'sass:dist'
- 'cssmin'
- 'copy:dist'
- 'concat:dist'
- 'template:dist'
- 'umd'
- 'uglify:dist'
- 'sass:dist'
- 'cssmin'
# prepare the website
public:

View File

@ -55,6 +55,12 @@ module.exports = function (grunt) {
'*.scss'
]
},
{
expand: true,
cwd: '.tmp/styles',
dest: '<%= pkg.config.dist %>/',
src: 'chartist.css*'
},
{
dest: '<%= pkg.config.dist %>/',
src: 'LICENSE'