summaryrefslogtreecommitdiffstats
path: root/brunch-config.js
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2021-05-04 03:54:04 +0200
committerAhmed Abdelhalim <[email protected]>2021-05-04 03:54:04 +0200
commitd93708b5d8756448b302365bd360c2ba22a60efd (patch)
tree33df63ff98a030af97e7534db6e21b0040e0f3a9 /brunch-config.js
parentd77ab36400bb40b9b6812ac47d1b796fe2836d17 (diff)
Add stylus and brunch configurations for building the website
Diffstat (limited to 'brunch-config.js')
-rw-r--r--brunch-config.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/brunch-config.js b/brunch-config.js
new file mode 100644
index 0000000..3502d03
--- /dev/null
+++ b/brunch-config.js
@@ -0,0 +1,14 @@
+module.exports = {
+ files: {
+ javascripts: { joinTo: "app.js" },
+ stylesheets: {
+ joinTo: {
+ "base.css": "app/base.styl",
+ "print.css": "app/print.styl",
+ },
+ },
+ },
+ plugins: {
+ stylus: {},
+ },
+};