├── .editorconfig ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── README.md ├── gulpfile.js ├── package.json └── src ├── index.html ├── main.js ├── raf.js ├── rng.js └── styles.less /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/src/main.js -------------------------------------------------------------------------------- /src/raf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/src/raf.js -------------------------------------------------------------------------------- /src/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/src/rng.js -------------------------------------------------------------------------------- /src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooflorent/js13k-boilerplate/HEAD/src/styles.less --------------------------------------------------------------------------------