├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── error-help.js ├── images └── error.png ├── package.json └── test ├── index.html └── sketch.js /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/README.md -------------------------------------------------------------------------------- /error-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/error-help.js -------------------------------------------------------------------------------- /images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/images/error.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/package.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/test/index.html -------------------------------------------------------------------------------- /test/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/error-help/HEAD/test/sketch.js --------------------------------------------------------------------------------