|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
343 bytes
|
| Line | |
|---|
| 1 | import resolve from 'rollup-plugin-node-resolve'
|
|---|
| 2 | import commonjs from 'rollup-plugin-commonjs'
|
|---|
| 3 | import pkg from './package.json'
|
|---|
| 4 |
|
|---|
| 5 | export default {
|
|---|
| 6 | input: `index.js`,
|
|---|
| 7 | plugins: [
|
|---|
| 8 | commonjs(),
|
|---|
| 9 | resolve(),
|
|---|
| 10 | ],
|
|---|
| 11 | output: [
|
|---|
| 12 | {
|
|---|
| 13 | file: pkg.main,
|
|---|
| 14 | format: `cjs`
|
|---|
| 15 | },
|
|---|
| 16 | {
|
|---|
| 17 | name: 'deepmerge',
|
|---|
| 18 | file: 'dist/umd.js',
|
|---|
| 19 | format: `umd`
|
|---|
| 20 | },
|
|---|
| 21 | ],
|
|---|
| 22 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.