@teambit/dependencies 1.0.1077 → 1.0.1079
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/dependencies-cmd.d.ts +2 -2
- package/dist/files-dependency-builder/fixtures/build-tree/not-link-file/file-c.d.ts +2 -1
- package/dist/files-dependency-builder/fixtures/build-tree/tree-shaking-cycle/index.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/build-tree/tree-shaking-cycle/is-string.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/build-tree/tree-shaking-cycle/self-cycle.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/dependency-tree/commonjs/b.d.ts +2 -1
- package/dist/files-dependency-builder/fixtures/dependency-tree/commonjs/c.d.ts +2 -1
- package/dist/files-dependency-builder/fixtures/filing-cabinet/ast.d.ts +159 -170
- package/dist/files-dependency-builder/fixtures/filing-cabinet/foo.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/filing-cabinet/mockedJSFiles.d.ts +51 -48
- package/dist/files-dependency-builder/fixtures/filing-cabinet/root1/mod1.d.ts +2 -1
- package/dist/files-dependency-builder/fixtures/filing-cabinet/root2/mod2.d.ts +2 -1
- package/dist/files-dependency-builder/fixtures/filing-cabinet/webpack.config.d.ts +9 -6
- package/dist/files-dependency-builder/fixtures/precinct/Gruntfile.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/precinct/cjsExportLazy.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/precinct/es6MixedExportLazy.d.ts +1 -1
- package/dist/files-dependency-builder/fixtures/precinct/exampleAST.d.ts +19 -16
- package/dist/files-dependency-builder/precinct/index.d.ts +2 -1
- package/package.json +34 -34
- /package/dist/{preview-1785069767283.js → preview-1785260578779.js} +0 -0
|
@@ -162,13 +162,13 @@ export declare class DependenciesDiagnoseCmd implements Command {
|
|
|
162
162
|
private reportPackageDrillDown;
|
|
163
163
|
json(_args: [], options: {
|
|
164
164
|
package?: string;
|
|
165
|
-
}): Promise<{
|
|
165
|
+
}): Promise<import("./dependencies.main.runtime").DiagnosisReport | {
|
|
166
166
|
packageName: string;
|
|
167
167
|
pnpmDirs: Array<{
|
|
168
168
|
version: string;
|
|
169
169
|
peerSuffix: string | null;
|
|
170
170
|
}>;
|
|
171
|
-
}
|
|
171
|
+
}>;
|
|
172
172
|
}
|
|
173
173
|
type DependenciesCircularCmdOptions = {
|
|
174
174
|
includeDeps?: boolean;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
declare const varX = 4;
|
|
2
|
+
export { varX };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as isString } from
|
|
1
|
+
export { default as isString } from './is-string';
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
declare const _exports: {};
|
|
2
|
+
export = _exports;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
declare const _exports: {};
|
|
2
|
+
export = _exports;
|
|
@@ -1,46 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export { end_1 as end };
|
|
17
|
-
}
|
|
18
|
-
export namespace program {
|
|
19
|
-
let type_1: string;
|
|
20
|
-
export { type_1 as type };
|
|
21
|
-
let start_2: number;
|
|
22
|
-
export { start_2 as start };
|
|
23
|
-
let end_2: number;
|
|
24
|
-
export { end_2 as end };
|
|
25
|
-
export namespace loc_1 {
|
|
26
|
-
export namespace start_3 {
|
|
27
|
-
let line_2: number;
|
|
28
|
-
export { line_2 as line };
|
|
29
|
-
let column_2: number;
|
|
30
|
-
export { column_2 as column };
|
|
31
|
-
}
|
|
32
|
-
export { start_3 as start };
|
|
33
|
-
export namespace end_3 {
|
|
34
|
-
let line_3: number;
|
|
35
|
-
export { line_3 as line };
|
|
36
|
-
let column_3: number;
|
|
37
|
-
export { column_3 as column };
|
|
38
|
-
}
|
|
39
|
-
export { end_3 as end };
|
|
40
|
-
}
|
|
41
|
-
export { loc_1 as loc };
|
|
42
|
-
export let sourceType: string;
|
|
43
|
-
export let body: {
|
|
1
|
+
declare const _exports: {
|
|
2
|
+
type: string;
|
|
3
|
+
start: number;
|
|
4
|
+
end: number;
|
|
5
|
+
loc: {
|
|
6
|
+
start: {
|
|
7
|
+
line: number;
|
|
8
|
+
column: number;
|
|
9
|
+
};
|
|
10
|
+
end: {
|
|
11
|
+
line: number;
|
|
12
|
+
column: number;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
program: {
|
|
44
16
|
type: string;
|
|
45
17
|
start: number;
|
|
46
18
|
end: number;
|
|
@@ -54,7 +26,8 @@ export namespace program {
|
|
|
54
26
|
column: number;
|
|
55
27
|
};
|
|
56
28
|
};
|
|
57
|
-
|
|
29
|
+
sourceType: string;
|
|
30
|
+
body: {
|
|
58
31
|
type: string;
|
|
59
32
|
start: number;
|
|
60
33
|
end: number;
|
|
@@ -68,7 +41,7 @@ export namespace program {
|
|
|
68
41
|
column: number;
|
|
69
42
|
};
|
|
70
43
|
};
|
|
71
|
-
|
|
44
|
+
specifiers: {
|
|
72
45
|
type: string;
|
|
73
46
|
start: number;
|
|
74
47
|
end: number;
|
|
@@ -82,140 +55,156 @@ export namespace program {
|
|
|
82
55
|
column: number;
|
|
83
56
|
};
|
|
84
57
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
58
|
+
local: {
|
|
59
|
+
type: string;
|
|
60
|
+
start: number;
|
|
61
|
+
end: number;
|
|
62
|
+
loc: {
|
|
63
|
+
start: {
|
|
64
|
+
line: number;
|
|
65
|
+
column: number;
|
|
66
|
+
};
|
|
67
|
+
end: {
|
|
68
|
+
line: number;
|
|
69
|
+
column: number;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
name: string;
|
|
97
73
|
};
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
74
|
+
}[];
|
|
75
|
+
importKind: string;
|
|
76
|
+
source: {
|
|
77
|
+
type: string;
|
|
78
|
+
start: number;
|
|
79
|
+
end: number;
|
|
80
|
+
loc: {
|
|
81
|
+
start: {
|
|
82
|
+
line: number;
|
|
83
|
+
column: number;
|
|
84
|
+
};
|
|
85
|
+
end: {
|
|
86
|
+
line: number;
|
|
87
|
+
column: number;
|
|
88
|
+
};
|
|
101
89
|
};
|
|
90
|
+
extra: {
|
|
91
|
+
rawValue: string;
|
|
92
|
+
raw: string;
|
|
93
|
+
};
|
|
94
|
+
value: string;
|
|
102
95
|
};
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
raw: string;
|
|
106
|
-
};
|
|
107
|
-
value: string;
|
|
108
|
-
};
|
|
109
|
-
}[];
|
|
110
|
-
export let directives: never[];
|
|
111
|
-
}
|
|
112
|
-
export let comments: never[];
|
|
113
|
-
export let tokens: ({
|
|
114
|
-
type: {
|
|
115
|
-
label: string;
|
|
116
|
-
keyword: string;
|
|
117
|
-
beforeExpr: boolean;
|
|
118
|
-
startsExpr: boolean;
|
|
119
|
-
rightAssociative: boolean;
|
|
120
|
-
isLoop: boolean;
|
|
121
|
-
isAssign: boolean;
|
|
122
|
-
prefix: boolean;
|
|
123
|
-
postfix: boolean;
|
|
124
|
-
binop: null;
|
|
125
|
-
updateContext: null;
|
|
96
|
+
}[];
|
|
97
|
+
directives: never[];
|
|
126
98
|
};
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
99
|
+
comments: never[];
|
|
100
|
+
tokens: ({
|
|
101
|
+
type: {
|
|
102
|
+
label: string;
|
|
103
|
+
keyword: string;
|
|
104
|
+
beforeExpr: boolean;
|
|
105
|
+
startsExpr: boolean;
|
|
106
|
+
rightAssociative: boolean;
|
|
107
|
+
isLoop: boolean;
|
|
108
|
+
isAssign: boolean;
|
|
109
|
+
prefix: boolean;
|
|
110
|
+
postfix: boolean;
|
|
111
|
+
binop: null;
|
|
112
|
+
updateContext: null;
|
|
134
113
|
};
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
114
|
+
value: string;
|
|
115
|
+
start: number;
|
|
116
|
+
end: number;
|
|
117
|
+
loc: {
|
|
118
|
+
start: {
|
|
119
|
+
line: number;
|
|
120
|
+
column: number;
|
|
121
|
+
};
|
|
122
|
+
end: {
|
|
123
|
+
line: number;
|
|
124
|
+
column: number;
|
|
125
|
+
};
|
|
138
126
|
};
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
updateContext?: undefined;
|
|
153
|
-
};
|
|
154
|
-
value: string;
|
|
155
|
-
start: number;
|
|
156
|
-
end: number;
|
|
157
|
-
loc: {
|
|
158
|
-
start: {
|
|
159
|
-
line: number;
|
|
160
|
-
column: number;
|
|
127
|
+
} | {
|
|
128
|
+
type: {
|
|
129
|
+
keyword?: undefined;
|
|
130
|
+
label: string;
|
|
131
|
+
beforeExpr: boolean;
|
|
132
|
+
startsExpr: boolean;
|
|
133
|
+
rightAssociative: boolean;
|
|
134
|
+
isLoop: boolean;
|
|
135
|
+
isAssign: boolean;
|
|
136
|
+
prefix: boolean;
|
|
137
|
+
postfix: boolean;
|
|
138
|
+
binop: null;
|
|
139
|
+
updateContext?: undefined;
|
|
161
140
|
};
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
141
|
+
value: string;
|
|
142
|
+
start: number;
|
|
143
|
+
end: number;
|
|
144
|
+
loc: {
|
|
145
|
+
start: {
|
|
146
|
+
line: number;
|
|
147
|
+
column: number;
|
|
148
|
+
};
|
|
149
|
+
end: {
|
|
150
|
+
line: number;
|
|
151
|
+
column: number;
|
|
152
|
+
};
|
|
165
153
|
};
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
keyword?: undefined;
|
|
180
|
-
};
|
|
181
|
-
value: string;
|
|
182
|
-
start: number;
|
|
183
|
-
end: number;
|
|
184
|
-
loc: {
|
|
185
|
-
start: {
|
|
186
|
-
line: number;
|
|
187
|
-
column: number;
|
|
154
|
+
} | {
|
|
155
|
+
type: {
|
|
156
|
+
keyword?: undefined;
|
|
157
|
+
label: string;
|
|
158
|
+
beforeExpr: boolean;
|
|
159
|
+
startsExpr: boolean;
|
|
160
|
+
rightAssociative: boolean;
|
|
161
|
+
isLoop: boolean;
|
|
162
|
+
isAssign: boolean;
|
|
163
|
+
prefix: boolean;
|
|
164
|
+
postfix: boolean;
|
|
165
|
+
binop: null;
|
|
166
|
+
updateContext: null;
|
|
188
167
|
};
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
168
|
+
value: string;
|
|
169
|
+
start: number;
|
|
170
|
+
end: number;
|
|
171
|
+
loc: {
|
|
172
|
+
start: {
|
|
173
|
+
line: number;
|
|
174
|
+
column: number;
|
|
175
|
+
};
|
|
176
|
+
end: {
|
|
177
|
+
line: number;
|
|
178
|
+
column: number;
|
|
179
|
+
};
|
|
192
180
|
};
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
};
|
|
208
|
-
start: number;
|
|
209
|
-
end: number;
|
|
210
|
-
loc: {
|
|
211
|
-
start: {
|
|
212
|
-
line: number;
|
|
213
|
-
column: number;
|
|
181
|
+
} | {
|
|
182
|
+
value?: undefined;
|
|
183
|
+
type: {
|
|
184
|
+
keyword?: undefined;
|
|
185
|
+
label: string;
|
|
186
|
+
beforeExpr: boolean;
|
|
187
|
+
startsExpr: boolean;
|
|
188
|
+
rightAssociative: boolean;
|
|
189
|
+
isLoop: boolean;
|
|
190
|
+
isAssign: boolean;
|
|
191
|
+
prefix: boolean;
|
|
192
|
+
postfix: boolean;
|
|
193
|
+
binop: null;
|
|
194
|
+
updateContext: null;
|
|
214
195
|
};
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
196
|
+
start: number;
|
|
197
|
+
end: number;
|
|
198
|
+
loc: {
|
|
199
|
+
start: {
|
|
200
|
+
line: number;
|
|
201
|
+
column: number;
|
|
202
|
+
};
|
|
203
|
+
end: {
|
|
204
|
+
line: number;
|
|
205
|
+
column: number;
|
|
206
|
+
};
|
|
218
207
|
};
|
|
219
|
-
};
|
|
220
|
-
|
|
221
|
-
|
|
208
|
+
})[];
|
|
209
|
+
};
|
|
210
|
+
export = _exports;
|
|
@@ -1,59 +1,62 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
let cjs: {
|
|
8
|
-
'foo.js': string;
|
|
9
|
-
'bar.jsx': string;
|
|
10
|
-
'baz.scss': string;
|
|
11
|
-
'pkg.json': string;
|
|
12
|
-
};
|
|
13
|
-
let ts: {
|
|
14
|
-
'index.ts': string;
|
|
15
|
-
'foo.ts': string;
|
|
16
|
-
};
|
|
17
|
-
let amd: {
|
|
18
|
-
'foo.js': string;
|
|
19
|
-
'bar.js': string;
|
|
20
|
-
};
|
|
21
|
-
let commonjs: {
|
|
22
|
-
'foo.js': string;
|
|
23
|
-
'bar.js': string;
|
|
24
|
-
'foo.baz': string;
|
|
25
|
-
'index.js': string;
|
|
26
|
-
'module.entry.js': string;
|
|
27
|
-
subdir: {
|
|
28
|
-
'module.js': string;
|
|
29
|
-
'index.js': string;
|
|
1
|
+
declare const _exports: {
|
|
2
|
+
js: {
|
|
3
|
+
es6: {
|
|
4
|
+
'foo.js': string;
|
|
5
|
+
'foo.jsx': string;
|
|
6
|
+
'bar.js': string;
|
|
30
7
|
};
|
|
31
|
-
|
|
32
|
-
'
|
|
8
|
+
cjs: {
|
|
9
|
+
'foo.js': string;
|
|
10
|
+
'bar.jsx': string;
|
|
11
|
+
'baz.scss': string;
|
|
12
|
+
'pkg.json': string;
|
|
33
13
|
};
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
'index.js': string;
|
|
14
|
+
ts: {
|
|
15
|
+
'index.ts': string;
|
|
16
|
+
'foo.ts': string;
|
|
38
17
|
};
|
|
39
|
-
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'package.json': string;
|
|
18
|
+
amd: {
|
|
19
|
+
'foo.js': string;
|
|
20
|
+
'bar.js': string;
|
|
43
21
|
};
|
|
44
|
-
|
|
22
|
+
commonjs: {
|
|
23
|
+
'foo.js': string;
|
|
24
|
+
'bar.js': string;
|
|
25
|
+
'foo.baz': string;
|
|
45
26
|
'index.js': string;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
27
|
+
'module.entry.js': string;
|
|
28
|
+
subdir: {
|
|
29
|
+
'module.js': string;
|
|
30
|
+
'index.js': string;
|
|
31
|
+
};
|
|
32
|
+
test: {
|
|
33
|
+
'index.spec.js': string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
node_modules: {
|
|
37
|
+
'lodash.assign': {
|
|
38
|
+
'index.js': string;
|
|
39
|
+
};
|
|
40
|
+
'module.entry': {
|
|
41
|
+
'index.main.js': string;
|
|
42
|
+
'index.module.js': string;
|
|
43
|
+
'package.json': string;
|
|
44
|
+
};
|
|
45
|
+
nested: {
|
|
46
|
+
'index.js': string;
|
|
47
|
+
node_modules: {
|
|
48
|
+
'lodash.assign': {
|
|
49
|
+
'index.js': string;
|
|
50
|
+
};
|
|
49
51
|
};
|
|
50
52
|
};
|
|
51
53
|
};
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
54
|
+
withIndex: {
|
|
55
|
+
subdir: {
|
|
56
|
+
'index.js': string;
|
|
57
|
+
};
|
|
55
58
|
'index.js': string;
|
|
56
59
|
};
|
|
57
|
-
'index.js': string;
|
|
58
60
|
};
|
|
59
|
-
}
|
|
61
|
+
};
|
|
62
|
+
export = _exports;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
declare const _exports: {};
|
|
2
|
+
export = _exports;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
declare const _exports: {};
|
|
2
|
+
export = _exports;
|
|
@@ -1,24 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
export let body: {
|
|
1
|
+
declare const _exports: {
|
|
3
2
|
type: string;
|
|
4
|
-
|
|
3
|
+
body: {
|
|
5
4
|
type: string;
|
|
6
|
-
|
|
5
|
+
declarations: {
|
|
7
6
|
type: string;
|
|
8
|
-
|
|
9
|
-
};
|
|
10
|
-
init: {
|
|
11
|
-
type: string;
|
|
12
|
-
callee: {
|
|
7
|
+
id: {
|
|
13
8
|
type: string;
|
|
14
9
|
name: string;
|
|
15
10
|
};
|
|
16
|
-
|
|
11
|
+
init: {
|
|
17
12
|
type: string;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
13
|
+
callee: {
|
|
14
|
+
type: string;
|
|
15
|
+
name: string;
|
|
16
|
+
};
|
|
17
|
+
arguments: {
|
|
18
|
+
type: string;
|
|
19
|
+
value: string;
|
|
20
|
+
raw: string;
|
|
21
|
+
}[];
|
|
22
|
+
};
|
|
23
|
+
}[];
|
|
24
|
+
kind: string;
|
|
22
25
|
}[];
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
};
|
|
27
|
+
export = _exports;
|
|
@@ -6,7 +6,8 @@ type Options = {
|
|
|
6
6
|
type?: string;
|
|
7
7
|
[lang: string]: any;
|
|
8
8
|
};
|
|
9
|
+
declare const getDepsFromFile: (filename: string, options?: Options) => Promise<string[]>;
|
|
9
10
|
declare const precinct: {
|
|
10
|
-
paperwork:
|
|
11
|
+
paperwork: typeof getDepsFromFile;
|
|
11
12
|
};
|
|
12
13
|
export default precinct;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/dependencies",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1079",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/dependencies/dependencies",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.dependencies",
|
|
8
8
|
"name": "dependencies",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1079"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"archy": "1.0.0",
|
|
@@ -20,48 +20,48 @@
|
|
|
20
20
|
"read-pkg-up": "7.0.1",
|
|
21
21
|
"table": "6.7.3",
|
|
22
22
|
"debug": "4.3.4",
|
|
23
|
+
"resolve-dependency-path": "2.0.0",
|
|
24
|
+
"stylus-lookup": "3.0.2",
|
|
23
25
|
"detective-amd": "3.0.1",
|
|
24
26
|
"detective-stylus": "1.0.0",
|
|
25
27
|
"module-definition": "3.3.1",
|
|
26
28
|
"node-source-walk": "4.2.0",
|
|
27
|
-
"resolve-dependency-path": "2.0.0",
|
|
28
|
-
"stylus-lookup": "3.0.2",
|
|
29
|
-
"@teambit/component-issues": "0.0.178",
|
|
30
|
-
"@teambit/legacy.constants": "0.0.35",
|
|
31
29
|
"@teambit/harmony": "0.4.12",
|
|
32
30
|
"@teambit/component-id": "1.2.4",
|
|
33
|
-
"@teambit/component-package-version": "0.0.455",
|
|
34
|
-
"@teambit/legacy.consumer-component": "0.0.139",
|
|
35
31
|
"@teambit/bit-error": "0.0.404",
|
|
36
|
-
"@teambit/legacy.dependency-graph": "0.0.141",
|
|
37
|
-
"@teambit/component.sources": "0.0.190",
|
|
38
|
-
"@teambit/legacy.utils": "0.0.43",
|
|
39
|
-
"@teambit/toolbox.path.path": "0.0.19",
|
|
40
|
-
"@teambit/legacy.bit-map": "0.0.195",
|
|
41
|
-
"@teambit/legacy.consumer-config": "0.0.138",
|
|
42
|
-
"@teambit/legacy.consumer": "0.0.138",
|
|
43
32
|
"@teambit/component-version": "1.0.4",
|
|
44
|
-
"@teambit/
|
|
45
|
-
"@teambit/
|
|
46
|
-
"@teambit/legacy.extension-data": "0.0.140",
|
|
47
|
-
"@teambit/toolbox.fs.last-modified": "0.0.17",
|
|
48
|
-
"@teambit/mdx.deps-detectors.detective-mdx": "0.0.1",
|
|
33
|
+
"@teambit/styling.deps-lookups.lookup-styling": "0.0.4",
|
|
34
|
+
"@teambit/typescript.deps-lookups.lookup-typescript": "0.0.2",
|
|
49
35
|
"@teambit/node.deps-detectors.detective-es6": "0.0.6",
|
|
50
36
|
"@teambit/styling.deps-detectors.detective-css": "0.0.6",
|
|
51
37
|
"@teambit/styling.deps-detectors.detective-less": "0.0.6",
|
|
52
38
|
"@teambit/styling.deps-detectors.detective-sass": "0.0.9",
|
|
53
39
|
"@teambit/styling.deps-detectors.detective-scss": "0.0.9",
|
|
54
40
|
"@teambit/typescript.deps-detectors.detective-typescript": "0.0.10",
|
|
55
|
-
"@teambit/
|
|
56
|
-
"@teambit/
|
|
57
|
-
"@teambit/
|
|
58
|
-
"@teambit/
|
|
59
|
-
"@teambit/workspace": "1.0.
|
|
60
|
-
"@teambit/aspect-loader": "1.0.
|
|
61
|
-
"@teambit/
|
|
62
|
-
"@teambit/
|
|
63
|
-
"@teambit/
|
|
64
|
-
"@teambit/
|
|
41
|
+
"@teambit/cli": "0.0.1357",
|
|
42
|
+
"@teambit/component-issues": "0.0.180",
|
|
43
|
+
"@teambit/graph": "1.0.1079",
|
|
44
|
+
"@teambit/legacy.constants": "0.0.37",
|
|
45
|
+
"@teambit/workspace": "1.0.1079",
|
|
46
|
+
"@teambit/aspect-loader": "1.0.1079",
|
|
47
|
+
"@teambit/component-package-version": "0.0.457",
|
|
48
|
+
"@teambit/dependency-resolver": "1.0.1079",
|
|
49
|
+
"@teambit/dev-files": "1.0.1079",
|
|
50
|
+
"@teambit/legacy.consumer-component": "0.0.141",
|
|
51
|
+
"@teambit/logger": "0.0.1450",
|
|
52
|
+
"@teambit/scope": "1.0.1079",
|
|
53
|
+
"@teambit/legacy.dependency-graph": "0.0.143",
|
|
54
|
+
"@teambit/component.sources": "0.0.192",
|
|
55
|
+
"@teambit/legacy.utils": "0.0.45",
|
|
56
|
+
"@teambit/toolbox.path.path": "0.0.21",
|
|
57
|
+
"@teambit/legacy.bit-map": "0.0.197",
|
|
58
|
+
"@teambit/legacy.consumer-config": "0.0.140",
|
|
59
|
+
"@teambit/legacy.consumer": "0.0.140",
|
|
60
|
+
"@teambit/legacy.logger": "0.0.52",
|
|
61
|
+
"@teambit/toolbox.fs.extension-getter": "0.0.18",
|
|
62
|
+
"@teambit/legacy.extension-data": "0.0.142",
|
|
63
|
+
"@teambit/toolbox.fs.last-modified": "0.0.19",
|
|
64
|
+
"@teambit/mdx.deps-detectors.detective-mdx": "0.0.3"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/cli-table": "^0.3.0",
|
|
@@ -71,11 +71,11 @@
|
|
|
71
71
|
"rewire": "7.0.0",
|
|
72
72
|
"sinon": "17.0.1",
|
|
73
73
|
"@types/mocha": "9.1.0",
|
|
74
|
-
"@teambit/component.testing.mock-components": "0.0.409",
|
|
75
|
-
"@teambit/harmony.testing.load-aspect": "0.0.404",
|
|
76
|
-
"@teambit/workspace.testing.mock-workspace": "0.0.215",
|
|
77
74
|
"@teambit/defender.fs.global-bit-temp-dir": "0.0.1",
|
|
78
|
-
"@teambit/harmony.envs.core-aspect-env": "
|
|
75
|
+
"@teambit/harmony.envs.core-aspect-env": "2.0.4",
|
|
76
|
+
"@teambit/component.testing.mock-components": "0.0.411",
|
|
77
|
+
"@teambit/harmony.testing.load-aspect": "0.0.406",
|
|
78
|
+
"@teambit/workspace.testing.mock-workspace": "0.0.217"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"chai": "5.2.1"
|
|
File without changes
|