@teambit/bundler 1.0.228 → 1.0.230
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/preview/teambit_compilation_bundler-preview.js +1 -1
- package/artifacts/schema.json +229 -70
- package/dist/browser-runtime.d.ts +4 -0
- package/dist/bundle.d.ts +4 -0
- package/dist/bundler-context.d.ts +207 -0
- package/dist/bundler.aspect.d.ts +2 -0
- package/dist/bundler.composition.d.ts +1 -0
- package/dist/bundler.d.ts +74 -0
- package/dist/bundler.main.runtime.d.ts +102 -0
- package/dist/bundler.service.d.ts +11 -0
- package/dist/component-server.d.ts +55 -0
- package/dist/dedup-envs.d.ts +12 -0
- package/dist/dev-server-context.d.ts +47 -0
- package/dist/dev-server.d.ts +45 -0
- package/dist/dev-server.graphql.d.ts +3 -0
- package/dist/dev-server.service.d.ts +67 -0
- package/dist/events/components-server-started-event.d.ts +18 -0
- package/dist/events/index.d.ts +1 -0
- package/dist/exceptions/bind-error.d.ts +2 -0
- package/dist/exceptions/index.d.ts +1 -0
- package/dist/get-entry.d.ts +14 -0
- package/dist/index.d.ts +10 -0
- package/dist/{preview-1712805335812.js → preview-1712891953391.js} +2 -2
- package/dist/select-port.d.ts +4 -0
- package/package.json +10 -10
- package/tsconfig.json +1 -22
@@ -0,0 +1,14 @@
|
|
1
|
+
import { ComponentID } from '@teambit/component';
|
2
|
+
import { ExecutionContext } from '@teambit/envs';
|
3
|
+
import { GetBitMapComponentOptions } from '@teambit/legacy/dist/consumer/bit-map/bit-map';
|
4
|
+
import { PathOsBased } from '@teambit/legacy/dist/utils/path';
|
5
|
+
import { BrowserRuntimeSlot } from './bundler.main.runtime';
|
6
|
+
export type ComponentDir = {
|
7
|
+
componentDir?: (componentId: ComponentID, bitMapOptions?: GetBitMapComponentOptions, options?: {
|
8
|
+
relative: boolean;
|
9
|
+
}) => PathOsBased | undefined;
|
10
|
+
};
|
11
|
+
/**
|
12
|
+
* computes the bundler entry.
|
13
|
+
*/
|
14
|
+
export declare function getEntry(context: ExecutionContext, runtimeSlot: BrowserRuntimeSlot): Promise<string[]>;
|
package/dist/index.d.ts
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
import { BundlerAspect } from './bundler.aspect';
|
2
|
+
export type { DevServer } from './dev-server';
|
3
|
+
export type { DevServerContext } from './dev-server-context';
|
4
|
+
export type { BundlerContext, Target, ModuleTarget, HtmlConfig as BundlerHtmlConfig, EntryMap as BundlerEntryMap, Entry as BundlerEntry, MetaData as BundlerContextMetaData, } from './bundler-context';
|
5
|
+
export type { Bundler, BundlerResult, BundlerMode, Asset, ChunksAssetsMap, EntriesAssetsMap, EntryAssets, } from './bundler';
|
6
|
+
export type { BundlerMain } from './bundler.main.runtime';
|
7
|
+
export type { ComponentDir } from './get-entry';
|
8
|
+
export { ComponentServer } from './component-server';
|
9
|
+
export * from './events';
|
10
|
+
export { BundlerAspect, BundlerAspect as default };
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@1.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@1.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@1.0.230/dist/bundler.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@1.0.230/dist/bundler.docs.mdx';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/bundler",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.230",
|
4
4
|
"homepage": "https://bit.cloud/teambit/compilation/bundler",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.compilation",
|
8
8
|
"name": "bundler",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.230"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -14,20 +14,20 @@
|
|
14
14
|
"lodash": "4.17.21",
|
15
15
|
"p-map-series": "2.1.0",
|
16
16
|
"@teambit/harmony": "0.4.6",
|
17
|
-
"@teambit/envs": "1.0.
|
18
|
-
"@teambit/builder": "1.0.
|
19
|
-
"@teambit/component": "1.0.
|
20
|
-
"@teambit/cli": "0.0.
|
21
|
-
"@teambit/dependency-resolver": "1.0.
|
22
|
-
"@teambit/graphql": "1.0.
|
23
|
-
"@teambit/pubsub": "1.0.
|
17
|
+
"@teambit/envs": "1.0.230",
|
18
|
+
"@teambit/builder": "1.0.230",
|
19
|
+
"@teambit/component": "1.0.230",
|
20
|
+
"@teambit/cli": "0.0.862",
|
21
|
+
"@teambit/dependency-resolver": "1.0.230",
|
22
|
+
"@teambit/graphql": "1.0.230",
|
23
|
+
"@teambit/pubsub": "1.0.230",
|
24
24
|
"@teambit/toolbox.network.get-port": "1.0.6"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
27
|
"@types/lodash": "4.14.165",
|
28
28
|
"@types/mocha": "9.1.0",
|
29
29
|
"chai": "4.3.0",
|
30
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
30
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|
33
33
|
"@apollo/client": "^3.6.0",
|
package/tsconfig.json
CHANGED
@@ -20,8 +20,7 @@
|
|
20
20
|
"emitDeclarationOnly": true,
|
21
21
|
"strict": true,
|
22
22
|
"strictPropertyInitialization": false,
|
23
|
-
"noImplicitAny": false
|
24
|
-
"composite": true
|
23
|
+
"noImplicitAny": false
|
25
24
|
},
|
26
25
|
"exclude": [
|
27
26
|
"artifacts",
|
@@ -36,25 +35,5 @@
|
|
36
35
|
"include": [
|
37
36
|
"**/*",
|
38
37
|
"**/*.json"
|
39
|
-
],
|
40
|
-
"references": [
|
41
|
-
{
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.envs_envs@1.0.228"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.pipelines_builder@1.0.228"
|
46
|
-
},
|
47
|
-
{
|
48
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
|
52
|
-
},
|
53
|
-
{
|
54
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.228"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_pubsub@1.0.228"
|
58
|
-
}
|
59
38
|
]
|
60
39
|
}
|