Skip to content

Commit 008d1e8

Browse files
author
Todd Tarsi
committed
fix(docs): metasyntactic variable names
1 parent d431dc6 commit 008d1e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ Options:
9898
with another allowed extension.
9999
[array] [default: ["js"]]
100100
--implicitDefault, -m Uses defaults as implicit instead of named.
101-
export { default as thing } from './thing.js'
102-
becomes export thing from './thing.js'
101+
export { default as foo } from './foo.js'
102+
becomes export foo from './foo.js'
103103
[boolean] [default: false]
104104
--wildcardFolders, -w Imports all children from directory as wildcard.
105-
export things from './things'
106-
becomes export * as things from './thing.js'
105+
export foo from './foo'
106+
becomes export * as foo from './foo'
107107
[boolean] [default: false]
108108

109109
Examples:

0 commit comments

Comments
 (0)