@teambit/dependency-resolver 1.0.1059 → 1.0.1061

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.
@@ -13,7 +13,7 @@ function _bitError() {
13
13
  }
14
14
  class MainAspectNotInstallable extends _bitError().BitError {
15
15
  constructor() {
16
- super(`can't install main aspect because it's version or name is not defined`);
16
+ super(`can't install main aspect because its version or name is not defined`);
17
17
  }
18
18
  }
19
19
  exports.MainAspectNotInstallable = MainAspectNotInstallable;
@@ -1 +1 @@
1
- {"version":3,"names":["_bitError","data","require","MainAspectNotInstallable","BitError","constructor","exports"],"sources":["main-aspect-not-installable.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\n\nexport class MainAspectNotInstallable extends BitError {\n constructor() {\n super(`can't install main aspect because it's version or name is not defined`);\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEO,MAAME,wBAAwB,SAASC,oBAAQ,CAAC;EACrDC,WAAWA,CAAA,EAAG;IACZ,KAAK,CAAC,uEAAuE,CAAC;EAChF;AACF;AAACC,OAAA,CAAAH,wBAAA,GAAAA,wBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_bitError","data","require","MainAspectNotInstallable","BitError","constructor","exports"],"sources":["main-aspect-not-installable.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\n\nexport class MainAspectNotInstallable extends BitError {\n constructor() {\n super(`can't install main aspect because its version or name is not defined`);\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEO,MAAME,wBAAwB,SAASC,oBAAQ,CAAC;EACrDC,WAAWA,CAAA,EAAG;IACZ,KAAK,CAAC,sEAAsE,CAAC;EAC/E;AACF;AAACC,OAAA,CAAAH,wBAAA,GAAAA,wBAAA","ignoreList":[]}
@@ -13,7 +13,7 @@ function _bitError() {
13
13
  }
14
14
  class MainAspectNotLinkable extends _bitError().BitError {
15
15
  constructor() {
16
- super(`can't link main aspect because it's name is not defined`);
16
+ super(`can't link main aspect because its name is not defined`);
17
17
  }
18
18
  }
19
19
  exports.MainAspectNotLinkable = MainAspectNotLinkable;
@@ -1 +1 @@
1
- {"version":3,"names":["_bitError","data","require","MainAspectNotLinkable","BitError","constructor","exports"],"sources":["main-aspect-not-linkable.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\n\nexport class MainAspectNotLinkable extends BitError {\n constructor() {\n super(`can't link main aspect because it's name is not defined`);\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEO,MAAME,qBAAqB,SAASC,oBAAQ,CAAC;EAClDC,WAAWA,CAAA,EAAG;IACZ,KAAK,CAAC,yDAAyD,CAAC;EAClE;AACF;AAACC,OAAA,CAAAH,qBAAA,GAAAA,qBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_bitError","data","require","MainAspectNotLinkable","BitError","constructor","exports"],"sources":["main-aspect-not-linkable.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\n\nexport class MainAspectNotLinkable extends BitError {\n constructor() {\n super(`can't link main aspect because its name is not defined`);\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEO,MAAME,qBAAqB,SAASC,oBAAQ,CAAC;EAClDC,WAAWA,CAAA,EAAG;IACZ,KAAK,CAAC,wDAAwD,CAAC;EACjE;AACF;AAACC,OAAA,CAAAH,qBAAA,GAAAA,qBAAA","ignoreList":[]}
@@ -13,7 +13,7 @@ function _bitError() {
13
13
  }
14
14
  class EntryAlreadyExist extends _bitError().BitError {
15
15
  constructor(entry) {
16
- super(`policy entry with ${entry.dependencyId} already exist, use install -u | --update-existing to update the entry`);
16
+ super(`policy entry with ${entry.dependencyId} already exists, use install -u | --update-existing to update the entry`);
17
17
  }
18
18
  }
19
19
  exports.EntryAlreadyExist = EntryAlreadyExist;
@@ -1 +1 @@
1
- {"version":3,"names":["_bitError","data","require","EntryAlreadyExist","BitError","constructor","entry","dependencyId","exports"],"sources":["entry-already-exist.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport type { WorkspacePolicyEntry } from '../workspace-policy';\n\nexport class EntryAlreadyExist extends BitError {\n constructor(entry: WorkspacePolicyEntry) {\n super(\n `policy entry with ${entry.dependencyId} already exist, use install -u | --update-existing to update the entry`\n );\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGO,MAAME,iBAAiB,SAASC,oBAAQ,CAAC;EAC9CC,WAAWA,CAACC,KAA2B,EAAE;IACvC,KAAK,CACH,qBAAqBA,KAAK,CAACC,YAAY,wEACzC,CAAC;EACH;AACF;AAACC,OAAA,CAAAL,iBAAA,GAAAA,iBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_bitError","data","require","EntryAlreadyExist","BitError","constructor","entry","dependencyId","exports"],"sources":["entry-already-exist.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport type { WorkspacePolicyEntry } from '../workspace-policy';\n\nexport class EntryAlreadyExist extends BitError {\n constructor(entry: WorkspacePolicyEntry) {\n super(\n `policy entry with ${entry.dependencyId} already exists, use install -u | --update-existing to update the entry`\n );\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGO,MAAME,iBAAiB,SAASC,oBAAQ,CAAC;EAC9CC,WAAWA,CAACC,KAA2B,EAAE;IACvC,KAAK,CACH,qBAAqBA,KAAK,CAACC,YAAY,yEACzC,CAAC;EACH;AACF;AAACC,OAAA,CAAAL,iBAAA,GAAAA,iBAAA","ignoreList":[]}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.dependencies_dependency-resolver@1.0.1059/dist/dependency-resolver.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.dependencies_dependency-resolver@1.0.1059/dist/dependency-resolver.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.dependencies_dependency-resolver@1.0.1061/dist/dependency-resolver.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.dependencies_dependency-resolver@1.0.1061/dist/dependency-resolver.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -2,6 +2,6 @@ import { BitError } from '@teambit/bit-error';
2
2
 
3
3
  export class MainAspectNotInstallable extends BitError {
4
4
  constructor() {
5
- super(`can't install main aspect because it's version or name is not defined`);
5
+ super(`can't install main aspect because its version or name is not defined`);
6
6
  }
7
7
  }
@@ -2,6 +2,6 @@ import { BitError } from '@teambit/bit-error';
2
2
 
3
3
  export class MainAspectNotLinkable extends BitError {
4
4
  constructor() {
5
- super(`can't link main aspect because it's name is not defined`);
5
+ super(`can't link main aspect because its name is not defined`);
6
6
  }
7
7
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/dependency-resolver",
3
- "version": "1.0.1059",
3
+ "version": "1.0.1061",
4
4
  "homepage": "https://bit.cloud/teambit/dependencies/dependency-resolver",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.dependencies",
8
8
  "name": "dependency-resolver",
9
- "version": "1.0.1059"
9
+ "version": "1.0.1061"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "4.1.2",
@@ -26,41 +26,41 @@
26
26
  "@pnpm/core": "1016.2.0",
27
27
  "semver-intersect": "1.4.0",
28
28
  "semver-range-intersect": "0.3.1",
29
- "@teambit/logger": "0.0.1444",
30
29
  "@teambit/toolbox.path.path": "0.0.19",
31
30
  "@teambit/bit-error": "0.0.404",
32
31
  "@teambit/bvm.path": "1.0.0",
33
- "@teambit/dependencies.fs.linked-dependencies": "0.0.63",
34
- "@teambit/pkg.modules.component-package-name": "0.0.143",
35
32
  "@teambit/harmony": "0.4.12",
36
33
  "@pnpm/network.ca-file": "3.0.3",
37
- "@teambit/cli": "0.0.1351",
38
34
  "@teambit/component-id": "1.2.4",
39
35
  "@teambit/component-version": "1.0.4",
40
- "@teambit/component.sources": "0.0.188",
41
- "@teambit/config-store": "0.0.232",
42
- "@teambit/config": "0.0.1526",
43
36
  "@teambit/harmony.modules.feature-toggle": "0.0.46",
44
37
  "@teambit/harmony.modules.requireable-component": "0.0.518",
45
38
  "@teambit/legacy.constants": "0.0.34",
46
- "@teambit/legacy.consumer-component": "0.0.137",
47
- "@teambit/legacy.extension-data": "0.0.138",
48
39
  "@teambit/pkg.entities.registry": "0.0.4",
49
40
  "@teambit/pkg.modules.semver-helper": "0.0.27",
50
- "@teambit/scope.network": "0.0.136",
51
- "@teambit/workspace.modules.node-modules-linker": "0.0.367",
52
41
  "@teambit/workspace.root-components": "1.0.1",
53
42
  "@teambit/component-issues": "0.0.177",
54
43
  "@teambit/component-package-version": "0.0.454",
55
44
  "@teambit/legacy-bit-id": "1.1.3",
56
- "@teambit/legacy.consumer-config": "0.0.136",
57
45
  "@teambit/toolbox.crypto.sha1": "0.0.18",
58
46
  "@teambit/toolbox.object.sorter": "0.0.2",
59
- "@teambit/component": "1.0.1059",
60
- "@teambit/envs": "1.0.1059",
61
- "@teambit/aspect-loader": "1.0.1059",
62
- "@teambit/objects": "0.0.566",
63
- "@teambit/graphql": "1.0.1059"
47
+ "@teambit/component": "1.0.1061",
48
+ "@teambit/envs": "1.0.1061",
49
+ "@teambit/aspect-loader": "1.0.1061",
50
+ "@teambit/logger": "0.0.1445",
51
+ "@teambit/objects": "0.0.568",
52
+ "@teambit/dependencies.fs.linked-dependencies": "0.0.64",
53
+ "@teambit/pkg.modules.component-package-name": "0.0.144",
54
+ "@teambit/graphql": "1.0.1061",
55
+ "@teambit/cli": "0.0.1352",
56
+ "@teambit/component.sources": "0.0.189",
57
+ "@teambit/config-store": "0.0.233",
58
+ "@teambit/config": "0.0.1527",
59
+ "@teambit/legacy.consumer-component": "0.0.138",
60
+ "@teambit/legacy.extension-data": "0.0.139",
61
+ "@teambit/scope.network": "0.0.137",
62
+ "@teambit/workspace.modules.node-modules-linker": "0.0.368",
63
+ "@teambit/legacy.consumer-config": "0.0.137"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/fs-extra": "9.0.7",
@@ -68,8 +68,8 @@
68
68
  "sinon": "17.0.1",
69
69
  "@types/semver": "7.5.8",
70
70
  "@types/mocha": "9.1.0",
71
- "@teambit/dependencies.aspect-docs.dependency-resolver": "0.0.186",
72
- "@teambit/harmony.envs.core-aspect-env": "1.0.0"
71
+ "@teambit/harmony.envs.core-aspect-env": "1.0.0",
72
+ "@teambit/dependencies.aspect-docs.dependency-resolver": "0.0.187"
73
73
  },
74
74
  "peerDependencies": {
75
75
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
@@ -4,7 +4,7 @@ import type { WorkspacePolicyEntry } from '../workspace-policy';
4
4
  export class EntryAlreadyExist extends BitError {
5
5
  constructor(entry: WorkspacePolicyEntry) {
6
6
  super(
7
- `policy entry with ${entry.dependencyId} already exist, use install -u | --update-existing to update the entry`
7
+ `policy entry with ${entry.dependencyId} already exists, use install -u | --update-existing to update the entry`
8
8
  );
9
9
  }
10
10
  }