1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00
Files
frontend/rollup/compatibility.js
Adam Mills 5207629e87 Add Object.assign polyfill support (#210)
* Add Object.assign polyfill support

* Remove redundant polyfill check

* Use ES6 in compatibility.js
2017-02-14 12:01:32 -08:00

9 lines
191 B
JavaScript

import config from './base-config';
export default Object.assign({}, config, {
entry: 'src/compatibility.js',
targets: [
{ dest: 'build/compatibility.js', format: 'iife' },
],
});