Within a Gulp.js file (or any Javascript file), I have defined paths in a Javascript object:
var paths = {
devDir : 'builds/development/',
devDirGlobs : this.devDir+'*.html'
}
I am attempting to reference the property "devDir" in the value of the property "devDirGlobs", using "this.devDir".
Despite my efforts, it doesn't work and there are no error messages. Any ideas?
Thank you in advance for your assistance!