@teambit/bundler 0.0.688 → 0.0.691

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Logo = () => (
4
+ <div style={{ height: '100%', display: 'flex', justifyContent: 'center' }}>
5
+ <img style={{ width: 70 }} src="https://static.bit.dev/extensions-icons/bundler.svg" />
6
+ </div>
7
+ );
@@ -0,0 +1,4 @@
1
+ ---
2
+ description: A unified interface for component bundling
3
+ labels: ['core aspect', 'dev service']
4
+ ---
@@ -114,6 +114,10 @@ export declare type HtmlConfig = {
114
114
  * Controls if and in what ways the output should be minified
115
115
  */
116
116
  minify?: boolean;
117
+ /**
118
+ * The favicon for the html page
119
+ */
120
+ favicon?: string;
117
121
  };
118
122
  export declare type Chunking = {
119
123
  /**
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Logo: () => JSX.Element;
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.Logo = void 0;
9
+
10
+ function _react() {
11
+ const data = _interopRequireDefault(require("react"));
12
+
13
+ _react = function () {
14
+ return data;
15
+ };
16
+
17
+ return data;
18
+ }
19
+
20
+ const Logo = () => /*#__PURE__*/_react().default.createElement("div", {
21
+ style: {
22
+ height: '100%',
23
+ display: 'flex',
24
+ justifyContent: 'center'
25
+ }
26
+ }, /*#__PURE__*/_react().default.createElement("img", {
27
+ style: {
28
+ width: 70
29
+ },
30
+ src: "https://static.bit.dev/extensions-icons/bundler.svg"
31
+ }));
32
+
33
+ exports.Logo = Logo;
34
+
35
+ //# sourceMappingURL=bundler.composition.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["bundler.composition.tsx"],"names":["Logo","height","display","justifyContent","width"],"mappings":";;;;;;;;;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;AAEO,MAAMA,IAAI,GAAG,mBAClB;AAAK,EAAA,KAAK,EAAE;AAAEC,IAAAA,MAAM,EAAE,MAAV;AAAkBC,IAAAA,OAAO,EAAE,MAA3B;AAAmCC,IAAAA,cAAc,EAAE;AAAnD;AAAZ,gBACE;AAAK,EAAA,KAAK,EAAE;AAAEC,IAAAA,KAAK,EAAE;AAAT,GAAZ;AAA2B,EAAA,GAAG,EAAC;AAA/B,EADF,CADK","sourcesContent":["import React from 'react';\n\nexport const Logo = () => (\n <div style={{ height: '100%', display: 'flex', justifyContent: 'center' }}>\n <img style={{ width: 70 }} src=\"https://static.bit.dev/extensions-icons/bundler.svg\" />\n </div>\n);\n"]}
@@ -0,0 +1,4 @@
1
+ ---
2
+ description: A unified interface for component bundling
3
+ labels: ['core aspect', 'dev service']
4
+ ---
@@ -16,4 +16,8 @@ export interface DevServerContext extends ExecutionContext {
16
16
  * title of the page.
17
17
  */
18
18
  title?: string;
19
+ /**
20
+ * favicon of the page.
21
+ */
22
+ favicon?: string;
19
23
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/bundler",
3
- "version": "0.0.688",
3
+ "version": "0.0.691",
4
4
  "homepage": "https://bit.dev/teambit/compilation/bundler",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.compilation",
8
8
  "name": "bundler",
9
- "version": "0.0.688"
9
+ "version": "0.0.691"
10
10
  },
11
11
  "dependencies": {
12
12
  "@teambit/harmony": "0.2.11",
@@ -15,17 +15,17 @@
15
15
  "lodash": "4.17.21",
16
16
  "@babel/runtime": "7.12.18",
17
17
  "core-js": "^3.0.0",
18
- "@teambit/envs": "0.0.688",
19
- "@teambit/builder": "0.0.688",
20
- "@teambit/component": "0.0.688",
21
- "@teambit/cli": "0.0.460",
22
- "@teambit/graphql": "0.0.688",
23
- "@teambit/pubsub": "0.0.688",
18
+ "@teambit/envs": "0.0.691",
19
+ "@teambit/builder": "0.0.691",
20
+ "@teambit/component": "0.0.691",
21
+ "@teambit/cli": "0.0.463",
22
+ "@teambit/graphql": "0.0.691",
23
+ "@teambit/pubsub": "0.0.691",
24
24
  "@teambit/toolbox.network.get-port": "0.0.113"
25
25
  },
26
26
  "devDependencies": {
27
- "@types/lodash": "4.14.165",
28
27
  "@types/react": "^17.0.8",
28
+ "@types/lodash": "4.14.165",
29
29
  "@types/mocha": "9.1.0",
30
30
  "@types/testing-library__jest-dom": "5.9.5",
31
31
  "@types/jest": "^26.0.0",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@apollo/client": "^3.0.0",
37
- "@teambit/legacy": "1.0.239",
37
+ "@teambit/legacy": "1.0.241",
38
38
  "react-dom": "^16.8.0 || ^17.0.0",
39
39
  "react": "^16.8.0 || ^17.0.0"
40
40
  },
@@ -62,7 +62,7 @@
62
62
  "react": "-"
63
63
  },
64
64
  "peerDependencies": {
65
- "@teambit/legacy": "1.0.239",
65
+ "@teambit/legacy": "1.0.241",
66
66
  "react-dom": "^16.8.0 || ^17.0.0",
67
67
  "react": "^16.8.0 || ^17.0.0"
68
68
  }
@@ -0,0 +1,2 @@
1
+ export const compositions = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@0.0.691/dist/bundler.composition.js')]
2
+ export const overview = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@0.0.691/dist/bundler.docs.mdx')]
@@ -1 +0,0 @@
1
-