@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.
@@ -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[]>;
@@ -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.228/dist/bundler.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@1.0.228/dist/bundler.docs.mdx';
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];
@@ -0,0 +1,4 @@
1
+ /**
2
+ * get an available port between range 3000 to 3200 or from port range
3
+ */
4
+ export declare function selectPort(range: number[] | number): Promise<number>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/bundler",
3
- "version": "1.0.228",
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.228"
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.228",
18
- "@teambit/builder": "1.0.228",
19
- "@teambit/component": "1.0.228",
20
- "@teambit/cli": "0.0.861",
21
- "@teambit/dependency-resolver": "1.0.228",
22
- "@teambit/graphql": "1.0.228",
23
- "@teambit/pubsub": "1.0.228",
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"
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
  }