0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 08:32:05 +01:00
svelte/rollup.config.js

69 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-06-25 00:58:21 +02:00
import path from 'path';
2017-11-23 14:45:22 +01:00
import replace from 'rollup-plugin-replace';
2017-08-20 17:56:21 +02:00
import resolve from 'rollup-plugin-node-resolve';
2017-06-25 00:58:21 +02:00
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import typescript from 'rollup-plugin-typescript';
import buble from 'rollup-plugin-buble';
2017-11-23 14:45:22 +01:00
import pkg from './package.json';
2017-06-25 00:58:21 +02:00
export default [
/* compiler/svelte.js */
{
2017-08-20 17:09:05 +02:00
input: 'src/index.ts',
2017-06-25 00:58:21 +02:00
plugins: [
2017-11-23 14:45:22 +01:00
replace({
__VERSION__: pkg.version
}),
2017-08-20 17:56:21 +02:00
resolve(),
2017-06-25 00:58:21 +02:00
commonjs(),
json(),
typescript({
include: 'src/**',
exclude: 'src/shared/**',
typescript: require('typescript')
})
],
2017-08-20 17:09:05 +02:00
output: {
file: 'compiler/svelte.js',
format: 'umd',
name: 'svelte',
sourcemap: true
}
2017-06-25 00:58:21 +02:00
},
/* ssr/register.js */
{
2018-04-29 02:04:57 +02:00
input: 'src/ssr/register.js',
2017-06-25 00:58:21 +02:00
plugins: [
2017-08-20 17:56:21 +02:00
resolve(),
2017-06-25 00:58:21 +02:00
commonjs(),
buble({
include: 'src/**',
exclude: 'src/shared/**',
target: {
node: 4
}
})
],
external: [path.resolve('src/index.ts'), 'fs', 'path'],
2017-08-20 17:09:05 +02:00
output: {
file: 'ssr/register.js',
format: 'cjs',
paths: {
[path.resolve('src/index.ts')]: '../compiler/svelte.js'
},
sourcemap: true
}
2017-06-25 00:58:21 +02:00
},
/* shared.js */
{
2017-08-20 17:09:05 +02:00
input: 'src/shared/index.js',
output: {
file: 'shared.js',
format: 'es'
}
2017-06-25 00:58:21 +02:00
}
];