
- Move build outputs into `dist/` - Make build output file names more consistent - Update `playground/index.html` for new output file name - Explicitly specify target => Node output is much smaller - Minor fixes / cleanup in `.gitignore` and `src/index*.js`
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
/* eslint-env browser */
|
|
require('babel-polyfill');
|
|
|
|
/**
|
|
* Export for use in a web page.
|
|
* @type {RenderWebGL}
|
|
*/
|
|
window.RenderWebGL = require('./index');
|