Skip to content

Commit

Permalink
Convert core to ES6, add rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Aug 30, 2018
1 parent b1c57e9 commit eef2be6
Show file tree
Hide file tree
Showing 95 changed files with 26,819 additions and 26,560 deletions.
20 changes: 20 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

export default {
input: 'src/xeogl.js',
plugins: [
],
// sourceMap: true,
output: [
{
format: 'umd',
name: 'xeogl',
file: 'build/xeogl.js',
indent: '\t'
},
{
format: 'es',
file: 'build/xeogl.module.js',
indent: '\t'
}
]
};
191 changes: 0 additions & 191 deletions src/_utils/inheritance.js

This file was deleted.

Loading

0 comments on commit eef2be6

Please sign in to comment.