From 40919ecd0bfc3a81b2899b0e673c646823547a26 Mon Sep 17 00:00:00 2001 From: jashkenas Date: Tue, 8 May 2018 15:48:57 -0700 Subject: [PATCH] Use full 'Observable' namespace for UMD global. --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 874ea8d2..0fec40ed 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -10,6 +10,6 @@ export default { banner: `// @observablehq/notebook-stdlib Copyright ${(new Date).getFullYear()} Observable, Inc.`, file: "dist/notebook-stdlib.js", format: "umd", - name: "O" + name: "Observable" } };