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
{{ message }}
This repository was archived by the owner on Dec 17, 2024. It is now read-only.
Ran into a strange problem where I've committed a project using bundle-up, and the static root ( after the commit ) contained files from the .svn metadata. It was locking up the browser when loading the dependencies.
Simple fix that works:
in bundle.coffee, line 34, exclude any files ending in 'svn-base'
return fileExt != 'js' and fileExt != 'css' and fileExt != 'svn-base'
maybe a config parameter of and array of exclude patterns would be better to deal with any other metadata possibly located in the static root.
Thanks!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Ran into a strange problem where I've committed a project using bundle-up, and the static root ( after the commit ) contained files from the .svn metadata. It was locking up the browser when loading the dependencies.
Simple fix that works:
in bundle.coffee, line 34, exclude any files ending in 'svn-base'
return fileExt != 'js' and fileExt != 'css' and fileExt != 'svn-base'
maybe a config parameter of and array of exclude patterns would be better to deal with any other metadata possibly located in the static root.
Thanks!
The text was updated successfully, but these errors were encountered: