We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 945ea5f commit e673631Copy full SHA for e673631
elm.mk
@@ -21,7 +21,8 @@ install: src bin build \
21
elm-package.json \
22
src/Main.elm src/interop.js styles/main.scss index.html \
23
bin/modd modd.conf \
24
- bin/devd bin/wt
+ bin/devd bin/wt \
25
+ .gitignore
26
27
server:
28
bin/devd -w build -l build/
@@ -65,6 +66,9 @@ modd.conf:
65
66
elm-package.json:
67
echo "$$elm_package_json" > $@
68
69
+.gitignore:
70
+ echo "$$gitignore" > $@
71
+
72
build/main.css: styles/*.scss
73
bin/wt compile -b build/ styles/main.scss
74
@@ -187,3 +191,11 @@ define index_html
187
191
</html>
188
192
endef
189
193
export index_html
194
195
+define gitignore
196
+elm-stuff
197
+elm.js
198
+/build/*
199
+/bin/*
200
+endef
201
+export gitignore
0 commit comments