Fixed path error for test Grunt task

This commit is contained in:
Kevin Vicrey 2015-03-15 14:27:57 -04:00
parent 2a9c61268a
commit df5cab23d5

View File

@ -1,5 +1,7 @@
'use strict';
var path = require('path');
module.exports = function (config) {
config.set({
basePath: '',
@ -45,8 +47,8 @@ module.exports = function (config) {
},
resolve: {
alias: {
'styles': './src/styles',
'components': './src/scripts/components/'
'styles': path.join(process.cwd(), './src/styles/'),
'components': path.join(process.cwd(), './src/scripts/components/')
}
}
},