mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
15 lines
421 B
JavaScript
15 lines
421 B
JavaScript
import { version } from "./package.json";
|
|
import git from "git-rev-sync";
|
|
|
|
// rollup.config.js
|
|
export default {
|
|
input: "dist/owl/src/index.js",
|
|
output: {
|
|
file: "dist/owl.js",
|
|
format: "iife",
|
|
name: "owl",
|
|
extend: true,
|
|
outro: `exports._version = '${version}';\nexports._date = '${new Date().toISOString()}';\nexports._hash = '${git.short()}';\nexports._url = 'https://github.com/odoo/owl';`
|
|
}
|
|
};
|