From 730d40b90b3b5b302272dfc8da1cec105d7ed4a7 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 15 Feb 2021 20:08:58 +0100 Subject: [PATCH] Avoid rollup warning --- packages/ts-plugin/examples/typescript/rollup.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ts-plugin/examples/typescript/rollup.config.js b/packages/ts-plugin/examples/typescript/rollup.config.js index 1924b9f..f49ed2a 100644 --- a/packages/ts-plugin/examples/typescript/rollup.config.js +++ b/packages/ts-plugin/examples/typescript/rollup.config.js @@ -3,6 +3,7 @@ import sourcemaps from 'rollup-plugin-sourcemaps'; export default { input: 'lib/index.js', plugins: [sourcemaps()], + external: ['@syndicate-lang/core'], output: { file: 'index.js', format: 'umd',