oxe
Version:
A mighty tiny web components framework/library
24 lines (22 loc) • 630 B
JavaScript
import Package from './package.json';
export default {
bundle: true,
transform: true,
name: 'Oxe',
input: 'src/index.js',
output: [
{ output: 'oxe.js' },
{ output: 'oxe.min.js', minify: true }
],
header: `/*
Name: ${Package.name}
Version: ${Package.version}
License: ${Package.license}
Author: ${Package.author}
Email: ${Package.email}
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
`
};