Skip to content

Commit

Permalink
Add new config utilities to browser.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrelbug committed Sep 4, 2020
1 parent 88749fd commit 01241a4
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
7 changes: 6 additions & 1 deletion deno_dist/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ export { default as compile } from "./compile.ts";
export { default as parse } from "./parse.ts";
export { default as render } from "./render.ts";
export { templates } from "./containers.ts";
export { defaultConfig, getConfig } from "./config.ts";
export {
defaultConfig,
defaultConfig as config,
getConfig,
configure,
} from "./config.ts";
6 changes: 6 additions & 0 deletions dist/browser/eta.dev.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/eta.dev.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/browser/eta.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/eta.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/types/browser.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export { default as compile } from './compile';
export { default as parse } from './parse';
export { default as render } from './render';
export { templates } from './containers';
export { defaultConfig, getConfig } from './config';
export { defaultConfig, defaultConfig as config, getConfig, configure } from './config';
2 changes: 1 addition & 1 deletion src/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export { default as compile } from './compile'
export { default as parse } from './parse'
export { default as render } from './render'
export { templates } from './containers'
export { defaultConfig, getConfig } from './config'
export { defaultConfig, defaultConfig as config, getConfig, configure } from './config'

0 comments on commit 01241a4

Please sign in to comment.