-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
override main_files #160
Comments
Have you seen: # via argument
asset "moment", "2.10.1", main_files: ["./locale/en-gb.js"]
# or in block
asset "moment", "2.10.1" do
main_files [
"./locale/en-gb.js",
"./locale/fr.js",
"./locale/lv.js"
]
end |
Yes, I have seen this and it doesn't seem like you read what I said. |
Well, your issue description is quiet poor, so maybe I missed something. So you want to have an option that will either merge main files declared by you, or override, like asset "moment", "2.10.1" do
main_files [ "./locale/lv.js" ], override: true # will keep only ./locale/lv.js file
end ? |
I'm sorry if I didn't make it clear at first. Yes, that |
One of the reasons why - is because
|
I'll reopen for now until I have more free time or someone provide a PR. |
main_files only adds some files, would be great to override it
The text was updated successfully, but these errors were encountered: