Parametrize paths.

This commit is contained in:
Alexis Lahouze
2016-02-17 09:52:13 +01:00
parent ddd0249d4a
commit dbb67d1285
8 changed files with 18 additions and 23 deletions
+1 -1
View File
@@ -2,6 +2,6 @@
module.exports = {
libs: [
'accountant/frontend/static/build'
'<%= accountant.frontend.dist %>'
]
};
+2 -2
View File
@@ -9,8 +9,8 @@ module.exports = {
'indent-width': 2
},
src: [
'accountant/frontend/static/*.html',
'accountant/frontend/static/views/*.html'
'<%= accountant.frontend.src %>/*.html',
'<%= accountant.frontend.src %>/views/*.html'
]
}
};
+2 -2
View File
@@ -2,12 +2,12 @@
module.exports = {
options: {
basePath: 'accountant/frontend/static',
basePath: '<%= accountant.frontend.src %>',
baseUrl: ''
},
index: {
files: {
'accountant/frontend/static/index.html': 'accountant/frontend/static/index.html'
'<%= accountant.frontend.src %>/index.html': '<%= accountant.frontend.src %>/index.html'
}
}
};
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = {
verbose: true
},
frontend_js: [
'<%= paths.frontend_js %>'
'<%= accountant.frontend.src %>/js/*.js'
],
toolchain: [
'Gruntfile.js',
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = {
reporter: require('jshint-stylish')
},
frontend_js: [
'<%= paths.frontend_js %>'
'<%= accountant.frontend.src %>/js/*.js'
],
toolchain: [
'Gruntfile.js',
+3 -3
View File
@@ -7,7 +7,7 @@ module.exports = {
},
js: {
files: [
'<%= paths.frontend_js %>',
'<%= accountant.frontend.src %>/js/*.js %>',
'grunt-config/*.js'
],
tasks: ['jsdev']
@@ -18,8 +18,8 @@ module.exports = {
},
html: {
files: [
'accountant/frontend/static/*.html',
'accountant/frontend/static/views/*.html'
'<%= accountant.frontend.src %>/*.html',
'<%= accountant.frontend.src %>/views/*.html'
],
tasks: ['htmldev']
},
+1 -1
View File
@@ -1,6 +1,6 @@
module.exports = {
app: {
src: ['accountant/frontend/static/index.html'],
src: ['<%= accountant.frontend.src %>/index.html'],
ignorePath: /\.\.\//
}
};