-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package.json and webpack configs should point to index as the main, s…
…ince that is where all the exports are that define the module (#78)
- Loading branch information
1 parent
347b1e5
commit a897231
Showing
4 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// src/index.ts | ||
|
||
export { default } from './TemplateProcessor.js'; | ||
export * from './TemplateProcessor.js'; | ||
export * as MetaInfoProducer from './MetaInfoProducer.js'; | ||
export {default as JsonPointer} from './JsonPointer.js' | ||
export {stringifyTemplateJSON} from './utils/stringify.js' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters