@teambit/bundler 0.0.543 → 0.0.551

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.
package/bundler.ts CHANGED
@@ -8,6 +8,15 @@ export type BundlerResult = {
8
8
  errors: Error[];
9
9
  warnings: string[];
10
10
  components: Component[];
11
+ /**
12
+ * timestamp in milliseconds when the task started
13
+ */
14
+ startTime?: number;
15
+
16
+ /**
17
+ * timestamp in milliseconds when the task ended
18
+ */
19
+ endTime?: number;
11
20
  };
12
21
 
13
22
  export interface Bundler {
package/dist/bundler.d.ts CHANGED
@@ -6,6 +6,8 @@ export declare type BundlerResult = {
6
6
  errors: Error[];
7
7
  warnings: string[];
8
8
  components: Component[];
9
+ startTime?: number;
10
+ endTime?: number;
9
11
  };
10
12
  export interface Bundler {
11
13
  run(): Promise<BundlerResult[]>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/bundler",
3
- "version": "0.0.543",
3
+ "version": "0.0.551",
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.543"
9
+ "version": "0.0.551"
10
10
  },
11
11
  "dependencies": {
12
12
  "@teambit/harmony": "0.2.11",
@@ -15,13 +15,13 @@
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.543",
19
- "@teambit/cli": "0.0.380",
20
- "@teambit/component": "0.0.543",
21
- "@teambit/graphql": "0.0.543",
22
- "@teambit/pubsub": "0.0.543",
23
- "@teambit/builder": "0.0.543",
24
- "@teambit/toolbox.network.get-port": "0.0.82"
18
+ "@teambit/envs": "0.0.551",
19
+ "@teambit/cli": "0.0.382",
20
+ "@teambit/component": "0.0.551",
21
+ "@teambit/graphql": "0.0.551",
22
+ "@teambit/pubsub": "0.0.551",
23
+ "@teambit/builder": "0.0.551",
24
+ "@teambit/toolbox.network.get-port": "0.0.86"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/lodash": "4.14.165",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@apollo/client": "^3.0.0",
37
- "@teambit/legacy": "1.0.76",
37
+ "@teambit/legacy": "1.0.169",
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.76",
65
+ "@teambit/legacy": "1.0.169",
66
66
  "react-dom": "^16.8.0 || ^17.0.0",
67
67
  "react": "^16.8.0 || ^17.0.0"
68
68
  }