0

After you build the app, JMVC generates production.js and production.css. In case you want to set version numbers to avoid the user using the cached files, how do you do that? Eg., producing production.1.1.js and production.1.1.css or something similar.

Sherzod
  • 5,041
  • 10
  • 47
  • 66

1 Answers1

0

This is really something you should be doing with your build process, not steal. Rename the file after it is generated.

noah
  • 21,289
  • 17
  • 64
  • 88
  • but renaming the file will break the links in other files, right? Which would mean to change the reference to this particular file on other files manually. – Sherzod Jun 07 '12 at 18:23
  • There is only 1 file: production.js. No other files would reference it. – noah Jun 21 '12 at 16:42