@teambit/bundler 0.0.597 → 0.0.603
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/dist/bundler.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export declare type BundlerResult = {
|
|
|
14
14
|
* timestamp in milliseconds when the task ended
|
|
15
15
|
*/
|
|
16
16
|
endTime?: number;
|
|
17
|
+
/**
|
|
18
|
+
* out put path of the Bundler Result
|
|
19
|
+
*/
|
|
20
|
+
outputPath?: string;
|
|
17
21
|
};
|
|
18
22
|
export interface Bundler {
|
|
19
23
|
run(): Promise<BundlerResult[]>;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/bundler",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.603",
|
|
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.
|
|
9
|
+
"version": "0.0.603"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@teambit/harmony": "0.2.11",
|
|
@@ -15,12 +15,12 @@
|
|
|
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.
|
|
19
|
-
"@teambit/cli": "0.0.
|
|
20
|
-
"@teambit/component": "0.0.
|
|
21
|
-
"@teambit/graphql": "0.0.
|
|
22
|
-
"@teambit/pubsub": "0.0.
|
|
23
|
-
"@teambit/builder": "0.0.
|
|
18
|
+
"@teambit/envs": "0.0.603",
|
|
19
|
+
"@teambit/cli": "0.0.415",
|
|
20
|
+
"@teambit/component": "0.0.603",
|
|
21
|
+
"@teambit/graphql": "0.0.603",
|
|
22
|
+
"@teambit/pubsub": "0.0.603",
|
|
23
|
+
"@teambit/builder": "0.0.603",
|
|
24
24
|
"@teambit/toolbox.network.get-port": "0.0.112"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@apollo/client": "^3.0.0",
|
|
37
|
-
"@teambit/legacy": "1.0.
|
|
37
|
+
"@teambit/legacy": "1.0.200",
|
|
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.
|
|
65
|
+
"@teambit/legacy": "1.0.200",
|
|
66
66
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
67
67
|
"react": "^16.8.0 || ^17.0.0"
|
|
68
68
|
}
|
|
Binary file
|