Currently, the generator creates one file per top-level path component -- that is, if you have paths a/b/c and a/d/e[1] and a path template named routes/$$path$$/route.js.hbs it only creates one file routes/a/route.js. I'd like it to create a/b/c.js or optionally a_b_c.js (assuming I change the path template to routes/$$path$$.js), so I can create path-specific scripts for testing purposes.
Currently, the generator creates one file per top-level path component -- that is, if you have paths
a/b/c
anda/d/e
[1] and a path template namedroutes/$$path$$/route.js.hbs
it only creates one fileroutes/a/route.js
. I'd like it to createa/b/c.js
or optionallya_b_c.js
(assuming I change the path template toroutes/$$path$$.js
), so I can create path-specific scripts for testing purposes.