This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe/rollup.config.js
Mikko Ahlroth c733b37389 Use totally new build system written in Elixir
This allows for fewer npm dependencies and fewer packages to handle (some
of the currently installed babel packages are for possible future use).
Hopefully the new build style is more explicit even though it is more
verbose. Both building in dev and prod mode and watching is supported.
2017-01-21 23:01:39 +02:00

7 lines
106 B
JavaScript

import sourcemaps from 'rollup-plugin-sourcemaps';
export default {
plugins: [
sourcemaps()
]
};