Skip to content

Instantly share code, notes, and snippets.

@jmarnold
Created October 27, 2010 21:03
Show Gist options
  • Save jmarnold/649991 to your computer and use it in GitHub Desktop.
Save jmarnold/649991 to your computer and use it in GitHub Desktop.
public class Test
{
public Test()
{
Scan(x =>
{
x.IncludeDirectory("content/scripts");
x.IncludeDirectory("packages");
x.IncludeSubdirectories();
});
Script("content/scripts/lib/jquery/jquery.validate.js")
.DependsOn("jquery.min.js");
Override("scripts/pages/create-case.js")
.With("packages/x/custom-create-case.js");
Script("packages/x/custom-create-case.js")
.DependsOn("custom-create-case-dependency.js");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment