We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some similar pre-compile solution, such as Sprocket and Stylus, support to require a folder by its index file.
Sprocket
Stylus
├── app.coffee ├── lib └── index.coffee └── foo.coffee └── bar.coffee
in app.coffee:
app.coffee
#= require lib
and in index.coffee:
index.coffee
#= require foo #= require bar
How about supporting it in Snockets?
Snockets
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
I like this idea, I'm currently working on the next major release of snockets, and I'll consider this for 2.0. If not, a release shortly thereafter.
No branches or pull requests
Some similar pre-compile solution, such as
Sprocket
andStylus
, support to require a folder by its index file.in
app.coffee
:#= require lib
and in
index.coffee
:How about supporting it in
Snockets
?The text was updated successfully, but these errors were encountered: