[elm-discuss] Re: Minimize Javascript for deploys

2016-09-12 Thread Dmytro Gladkyi
I just use gulp-minify from npmjs: var minify = require("gulp-minify"); gulp.task("minify", ["build-elm"], function() {return gulp.src("./elm.js") //elm.js is what elm-make outputs.pipe(minify()) .pipe(gulp.dest("./"));}); I also tried Google Closure Compiler - but it gave me erro

[elm-discuss] Re: Elm-mdl implementations - suggest projects that can be added to reference list

2016-08-31 Thread Dmytro Gladkyi
ørdag 20. august 2016 17.52.29 UTC+2 skrev Dmytro Gladkyi følgende: >> >> You can press on a blue Card (anywhere) and it will navigate back to >> list. I'll add button for this anyway. > > -- You received this message because you are subscribed to the Google Groups &q

[elm-discuss] Re: Elm-mdl implementations - suggest projects that can be added to reference list

2016-08-20 Thread Dmytro Gladkyi
You can press on a blue Card (anywhere) and it will navigate back to list. I'll add button for this anyway. -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to elm-d

[elm-discuss] Re: Elm-mdl implementations - suggest projects that can be added to reference list

2016-08-19 Thread Dmytro Gladkyi
Hi Håkon, I have switched from React + Redux + Bootstrap to Elm + Elm Mdl my hobby project: *https://offtie.com/* Project allows to save urls to read later without data connection or in AirPlane Mode. Urls are parsed by www.readability.com and saved into LocalStorage. Sit