@teambit/tracker 1.0.142 → 1.0.144

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,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuites>
3
+ <testsuite name="teambit.component/tracker@1.0.144" tests="0" failures="0" errors="0" skipped="0"/>
4
+ </testsuites>
@@ -115,7 +115,7 @@ export default class AddComponents {
115
115
  * used for updating main file if exists or doesn't exists
116
116
  */
117
117
  _addMainFileToFiles(files: ComponentMapFile[]): PathOsBased | null | undefined;
118
- _findMainFileInFiles(mainFile: string, files: ComponentMapFile[]): ComponentMapFile;
118
+ _findMainFileInFiles(mainFile: string, files: ComponentMapFile[]): ComponentMapFile | undefined;
119
119
  private getDefaultScope;
120
120
  /**
121
121
  * given the component paths, prepare the id, mainFile and files to be added later on to bitmap
@@ -45,7 +45,7 @@ export declare class TrackerMain {
45
45
  * otherwise, it is self-hosted
46
46
  */
47
47
  private isHostedByBit;
48
- static slots: any[];
48
+ static slots: never[];
49
49
  static dependencies: import("@teambit/harmony").Aspect[];
50
50
  static runtime: import("@teambit/harmony").RuntimeDefinition;
51
51
  static provider([cli, workspace, loggerMain]: [CLIMain, Workspace, LoggerMain]): Promise<TrackerMain>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/tracker",
3
- "version": "1.0.142",
3
+ "version": "1.0.144",
4
4
  "homepage": "https://bit.cloud/teambit/component/tracker",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.component",
8
8
  "name": "tracker",
9
- "version": "1.0.142"
9
+ "version": "1.0.144"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -19,19 +19,18 @@
19
19
  "@teambit/component-id": "1.2.0",
20
20
  "@teambit/legacy-bit-id": "1.1.0",
21
21
  "@teambit/harmony": "0.4.6",
22
- "@teambit/cli": "0.0.848",
23
- "@teambit/workspace.modules.node-modules-linker": "0.0.162",
24
- "@teambit/workspace": "1.0.142",
25
- "@teambit/envs": "1.0.142",
26
- "@teambit/logger": "0.0.941"
22
+ "@teambit/cli": "0.0.849",
23
+ "@teambit/workspace.modules.node-modules-linker": "0.0.163",
24
+ "@teambit/workspace": "1.0.144",
25
+ "@teambit/envs": "1.0.144",
26
+ "@teambit/logger": "0.0.942"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/fs-extra": "9.0.7",
30
30
  "@types/lodash": "4.14.165",
31
31
  "@types/mocha": "9.1.0",
32
- "@types/jest": "^29.2.2",
33
- "@types/testing-library__jest-dom": "^5.9.5",
34
- "@teambit/harmony.envs.core-aspect-env": "0.0.19"
32
+ "chai": "4.3.0",
33
+ "@teambit/harmony.envs.core-aspect-env": "0.0.24"
35
34
  },
36
35
  "peerDependencies": {
37
36
  "@teambit/legacy": "1.0.624"
@@ -48,7 +47,8 @@
48
47
  "default": "./dist/index.js"
49
48
  },
50
49
  "./dist/*": "./dist/*",
51
- "./artifacts/*": "./artifacts/*"
50
+ "./artifacts/*": "./artifacts/*",
51
+ "./*": "./*.ts"
52
52
  },
53
53
  "private": false,
54
54
  "engines": {
package/tsconfig.json CHANGED
@@ -17,7 +17,10 @@
17
17
  "resolveJsonModule": true,
18
18
  "allowJs": true,
19
19
  "outDir": "dist",
20
- "emitDeclarationOnly": true
20
+ "emitDeclarationOnly": true,
21
+ "strict": true,
22
+ "strictPropertyInitialization": false,
23
+ "noImplicitAny": false
21
24
  },
22
25
  "exclude": [
23
26
  "artifacts",