Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Jul 19, 2020
1 parent 5ed08a3 commit f94493c
Show file tree
Hide file tree
Showing 5 changed files with 11,342 additions and 7,500 deletions.
8 changes: 0 additions & 8 deletions .babelrc.js

This file was deleted.

56 changes: 28 additions & 28 deletions example/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
import svelte from 'rollup-plugin-svelte';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import replace from 'rollup-plugin-replace';
import commonjs from "@rollup/plugin-commonjs";
import resolve from "@rollup/plugin-node-resolve";
import replace from "@rollup/plugin-replace";
import svelte from "rollup-plugin-svelte";

export default {
input: 'src/main.js',
output: {
sourcemap: true,
format: 'iife',
name: 'app',
file: 'public/bundle.js',
globals: {
'apollo-boost': ''
}
},
external: [],
plugins: [
svelte({
dev: true,
css: css => {
css.write('public/bundle.css');
}
}),
resolve(),
commonjs(),
replace({
'process.env.NODE_ENV': JSON.stringify('development')
})
]
input: "src/main.js",
output: {
sourcemap: true,
format: "iife",
name: "app",
file: "public/bundle.js",
globals: {
"apollo-boost": "",
},
},
external: [],
plugins: [
svelte({
dev: true,
css: (css) => {
css.write("public/bundle.css");
},
}),
resolve(),
commonjs(),
replace({
"process.env.NODE_ENV": JSON.stringify("development"),
}),
],
};
Loading

0 comments on commit f94493c

Please sign in to comment.