Skip to content

Commit 3f774c4

Browse files
committed
Rename build to dist.
1 parent c3d1cf0 commit 3f774c4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
build/
1+
dist/

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*.sublime-workspace
22
.DS_Store
33
.esm-cache/
4-
build/
4+
dist/
55
node_modules
66
npm-debug.log

.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*.sublime-*
22
.DS_Store
33
.esm-cache/
4-
build/*.zip
4+
dist/*.zip
55
test/

notebook-stdlib.sublime-project

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"path": ".",
55
"file_exclude_patterns": ["*.sublime-workspace"],
6-
"folder_exclude_patterns": [".esm-cache", "build"]
6+
"folder_exclude_patterns": [".esm-cache", "dist"]
77
}
88
],
99
"build_systems": [

rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
output: {
99
extend: true,
1010
banner: `// @observablehq/notebook-stdlib Copyright ${(new Date).getFullYear()} Observable, Inc.`,
11-
file: "build/notebook-stdlib.js",
11+
file: "dist/notebook-stdlib.js",
1212
format: "umd",
1313
name: "O"
1414
}

0 commit comments

Comments
 (0)