From 9f73a337d67a3629e6bcd66ca0705f5f3c07ea91 Mon Sep 17 00:00:00 2001 From: jashkenas Date: Tue, 8 May 2018 11:40:40 -0700 Subject: [PATCH] Move build to dist for notebook-stdlib parity. --- .eslintignore | 2 +- .gitignore | 2 +- .npmignore | 2 +- package.json | 2 +- rollup.config.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.eslintignore b/.eslintignore index 567609b..849ddff 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1 +1 @@ -build/ +dist/ diff --git a/.gitignore b/.gitignore index 503ec94..5566d02 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ *.sublime-workspace .DS_Store .esm-cache/ -build/ +dist/ node_modules npm-debug.log diff --git a/.npmignore b/.npmignore index f597c5b..13d86ad 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,5 @@ *.sublime-* .DS_Store .esm-cache/ -build/*.zip +dist/*.zip test/ diff --git a/package.json b/package.json index 1ed664e..b378c94 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "scripts": { "precommit": "eslint .", - "prepublishOnly": "rollup -c && cp src/style.css build/notebook-inspector-style.css" + "prepublishOnly": "rollup -c && cp src/style.css dist/notebook-inspector-style.css" }, "esm": { "mode": "all", diff --git a/rollup.config.js b/rollup.config.js index 39b40da..ec89fc9 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -8,7 +8,7 @@ export default { output: { extend: true, banner: `// @observablehq/notebook-inspector Copyright ${(new Date).getFullYear()} Observable, Inc.`, - file: "build/notebook-inspector.js", + file: "dist/notebook-inspector.js", format: "umd", name: "O" }