├── .gitignore ├── README.md ├── assets ├── index.html └── sparkle.css ├── bower.json ├── html ├── index.html ├── main.css └── sparkle.svg ├── src ├── Sparkle.js └── Sparkle.purs └── test └── Main.purs /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | output/ 3 | .psci* 4 | .pulp-cache/ 5 | html/main.js 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/README.md -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/sparkle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/assets/sparkle.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/bower.json -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/html/index.html -------------------------------------------------------------------------------- /html/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/html/main.css -------------------------------------------------------------------------------- /html/sparkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/html/sparkle.svg -------------------------------------------------------------------------------- /src/Sparkle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/src/Sparkle.js -------------------------------------------------------------------------------- /src/Sparkle.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/src/Sparkle.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/purescript-sparkle/HEAD/test/Main.purs --------------------------------------------------------------------------------