Closed DrSammyD closed 10 years ago
it had to do with my using baseUrl inside of my mainConfigFile;
I fixed it so that it works on linux by removing my baseUrl
from my mainConfigFile
, but now the text plugin isn't working on windows
I have a Gist of all the relevant files and the outputs of the configs in debug
you'll see the error in the windows json
found the problem
infered.baseUrl= process.cwd()+'/public/javascripts/app'
infered.out= process.cwd()+'/public/javascripts/app/main-built.js'
needs to be
infered.baseUrl= process.cwd()+'/public/javascripts/app'.split('/').join(path.sep)
infered.out= process.cwd()+'/public/javascripts/app/main-built.js'.split('/').join(path.sep)
It's always good when problems solve themselves before I get involved!
Incorporated your skeleton. Thanks!
for some reason mimosa isn't using a baseUrl to create includes. not only that but it cuts off the p from public.
here's my optimize section