44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
|
|
||
|
// Config file for running Rollup in "watch" mode
|
||
|
// This adds a sanity check to help ourselves to run 'rollup -w' as needed.
|
||
|
|
||
|
// Needed to create files loadable by IE8
|
||
|
import rollupGitVersion from 'rollup-plugin-git-version'
|
||
|
|
||
|
import gitRev from 'git-rev-sync'
|
||
|
|
||
|
const branch = gitRev.branch();
|
||
|
const rev = gitRev.short();
|
||
|
|
||
|
const version = require('../package.json').version + '+' + branch + '.' + rev;
|
||
|
|
||
|
const now = (new Date()).getTime();
|
||
|
const limit = now + 5 * 60 * 1000; // 5 minutes, in milliseconds
|
||
|
|
||
|
const warningCode = `
|
||
|
if ((new Date()).getTime() > ` + limit + `) {
|
||
|
var msg = "This rollupjs bundle is potentially old. Make sure you're running 'npm run-script watch' or 'yarn run watch'.";
|
||
|
alert(msg);
|
||
|
// throw new Error(msg);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Leaflet ` + version + `, a JS library for interactive maps. http://leafletjs.com
|
||
|
* (c) 2010-2016 Vladimir Agafonkin, (c) 2010-2011 CloudMade
|
||
|
*/
|
||
|
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
format: 'umd',
|
||
|
moduleName: 'L',
|
||
|
banner: warningCode,
|
||
|
entry: 'src/Leaflet.js',
|
||
|
dest: 'debug/leaflet-rollup-src.js',
|
||
|
plugins: [
|
||
|
rollupGitVersion()
|
||
|
],
|
||
|
sourceMap: true,
|
||
|
legacy: true // Needed to create files loadable by IE8
|
||
|
};
|