Skip to content

Commit

Permalink
Fix typo in destination directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonMayerhofer committed Jan 14, 2019
1 parent e654320 commit 989cab7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = function(grunt) {
gruntfile: 'Gruntfile.js',
},
src: 'src/assets/js', // Development code
dest: 'dest/assets/js', // Production code
dest: 'dist/assets/js', // Production code
dist_file_name: 'app.js',
files_std: [
// Standard file match
Expand All @@ -64,7 +64,7 @@ module.exports = function(grunt) {
// Sass assets
sass: {
src: 'src/assets/scss', // Source files dir
dest: 'dest/assets/css', // Compiled files dir
dest: 'dist/assets/css', // Compiled files dir
files_std: [
// Standard file match
'<%= paths.sass.src %>/**/*.scss',
Expand All @@ -74,7 +74,7 @@ module.exports = function(grunt) {

// CSS assets
css: {
src: 'dest/assets/css', // Source files dir
src: 'dist/assets/css', // Source files dir
files_std: [
// Standard file match
'<%= paths.css.src %>/*.css',
Expand Down Expand Up @@ -113,7 +113,7 @@ module.exports = function(grunt) {
img: {
ext: 'png,jpg,gif,svg,jpeg',
src: 'src/assets/images/**/*.{<%= paths.img.ext %>}', // Source files
dest: 'dest/assets/images', // destination files dir
dest: 'dist/assets/images', // destination files dir
files_std: [
// Standard file match
'<%= paths.img.src %>',
Expand Down

0 comments on commit 989cab7

Please sign in to comment.