Skip to content

Commit 70a04c9

Browse files
Frank SchülerFrank Schüler
authored andcommitted
more bundle types
1 parent f332dc9 commit 70a04c9

34 files changed

+8182
-4552
lines changed

browser-framework-bundle.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import utils from "./src/utils";
2+
import Ready from "./src/Ready";
3+
import Component from "./src/Component";
4+
5+
const pack = {VERSION : "${version}", utils, Ready, Component };
6+
7+
GLOBAL.defaultjs = GLOBAL.defaultjs || {};
8+
GLOBAL.defaultjs.html = GLOBAL.defaultjs.html || {};
9+
GLOBAL.defaultjs.html.components = GLOBAL.defaultjs.html.components || pack;

browser-full-bundle.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import utils from "./src/utils";
2+
import Ready from "./src/Ready";
3+
import Component from "./src/Component";
4+
import components from "./src/components"
5+
6+
const pack = {VERSION : "${version}", utils, Ready, Component, components};
7+
8+
GLOBAL.defaultjs = GLOBAL.defaultjs || {};
9+
GLOBAL.defaultjs.html = GLOBAL.defaultjs.html || {};
10+
GLOBAL.defaultjs.html.components = GLOBAL.defaultjs.html.components || pack;

0 commit comments

Comments
 (0)