Skip to content

Commit

Permalink
Move build to dist for notebook-stdlib parity.
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed May 8, 2018
1 parent 505dc3d commit 9f73a33
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
build/
dist/
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*.sublime-workspace
.DS_Store
.esm-cache/
build/
dist/
node_modules
npm-debug.log
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.sublime-*
.DS_Store
.esm-cache/
build/*.zip
dist/*.zip
test/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 9f73a33

Please sign in to comment.