syndicate-js/packages/compiler/rollup.config.js

10 lines
376 B
JavaScript
Raw Normal View History

2021-12-01 16:24:29 +00:00
/// SPDX-License-Identifier: GPL-3.0-or-later
/// SPDX-FileCopyrightText: Copyright © 2016-2021 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
2021-01-25 21:15:02 +00:00
import { SyndicateRollup } from '../../rollup.js';
const r = new SyndicateRollup('syndicate-compiler', { globalName: 'SyndicateCompiler' });
2021-01-18 22:11:53 +00:00
export default [
2021-01-25 21:15:02 +00:00
r.config('lib/index.js', r.umd),
r.config('lib/index.js', r.es6),
2021-01-18 22:11:53 +00:00
];