You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into a very unique case in an Ember app's JS filename is referenced in the app code, but is not intended to be an asset path. I'd like to be able to skip this particular references when this plugin is running, but don't see how I can do that.
Maybe a comment line before the thing I want to skip would work?
The text was updated successfully, but these errors were encountered:
@mehulkar I know you asked this a long long time ago... Before the pandemic was what it was today...
But you can do concat the filename and it will be skipped :)
const a = "first-half"
const b = "second-half"
const all = ${a}${b}.js
I ran into a very unique case in an Ember app's JS filename is referenced in the app code, but is not intended to be an asset path. I'd like to be able to skip this particular references when this plugin is running, but don't see how I can do that.
Maybe a comment line before the thing I want to skip would work?
The text was updated successfully, but these errors were encountered: