Skip to content

Instantly share code, notes, and snippets.

@paulcsmith
Created August 8, 2017 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulcsmith/83a3d8203d258bcc74a907bdd33771ca to your computer and use it in GitHub Desktop.
Save paulcsmith/83a3d8203d258bcc74a907bdd33771ca to your computer and use it in GitHub Desktop.
exports.files = {
javascripts: {
joinTo: "js/app.js"
},
stylesheets: {
// Here is what I thought would make Brunch stop trying to import other files
joinTo: { "css/app.css": "css/app.css" }
},
templates: {
joinTo: "js/app.js"
}
}
exports.conventions = {
assets: /^(assets\/static)/
}
exports.paths = {
watched: [
"assets",
],
public: "public"
}
exports.plugins = {
babel: {
ignore: [/assets\/vendor/]
},
postcss: {
processors: [
require("precss"),
require("lost"),
require("postcss-cssnext")(),
]
}
}
exports.modules = {
autoRequire: {
"js/app.js": ["assets/js/app"]
}
}
exports.npm = {
enabled: true,
globals: {$: "jquery", jQuery: "jquery"},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment