@teambit/cache 0.0.470 → 0.0.471
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.
@@ -3,10 +3,24 @@ export declare type CacheConfig = {
|
|
3
3
|
cacheDirectory: string;
|
4
4
|
};
|
5
5
|
export declare class CacheMain {
|
6
|
+
/**
|
7
|
+
* extension config
|
8
|
+
*/
|
6
9
|
readonly config: CacheConfig;
|
10
|
+
/**
|
11
|
+
* logger extension.
|
12
|
+
*/
|
7
13
|
private readonly logger;
|
8
14
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
9
|
-
constructor(
|
15
|
+
constructor(
|
16
|
+
/**
|
17
|
+
* extension config
|
18
|
+
*/
|
19
|
+
config: CacheConfig,
|
20
|
+
/**
|
21
|
+
* logger extension.
|
22
|
+
*/
|
23
|
+
logger: Logger);
|
10
24
|
static dependencies: import("@teambit/harmony").Aspect[];
|
11
25
|
static defaultConfig: {
|
12
26
|
cacheDirectory: string;
|
Binary file
|
package/package.json
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/cache",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.471",
|
4
4
|
"homepage": "https://bit.dev/teambit/harmony/cache",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.harmony",
|
8
8
|
"name": "cache",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.471"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@teambit/harmony": "0.2.11",
|
13
13
|
"cacache": "15.0.5",
|
14
14
|
"@babel/runtime": "7.12.18",
|
15
15
|
"core-js": "^3.0.0",
|
16
|
-
"@teambit/cli": "0.0.
|
17
|
-
"@teambit/logger": "0.0.
|
16
|
+
"@teambit/cli": "0.0.386",
|
17
|
+
"@teambit/logger": "0.0.471"
|
18
18
|
},
|
19
19
|
"devDependencies": {
|
20
20
|
"@types/cacache": "12.0.1",
|
@@ -30,7 +30,7 @@
|
|
30
30
|
"@types/node": "12.20.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|
33
|
-
"@teambit/legacy": "1.0.
|
33
|
+
"@teambit/legacy": "1.0.172",
|
34
34
|
"react-dom": "^16.8.0 || ^17.0.0",
|
35
35
|
"react": "^16.8.0 || ^17.0.0"
|
36
36
|
},
|
@@ -58,7 +58,7 @@
|
|
58
58
|
"react": "-"
|
59
59
|
},
|
60
60
|
"peerDependencies": {
|
61
|
-
"@teambit/legacy": "1.0.
|
61
|
+
"@teambit/legacy": "1.0.172",
|
62
62
|
"react-dom": "^16.8.0 || ^17.0.0",
|
63
63
|
"react": "^16.8.0 || ^17.0.0"
|
64
64
|
}
|
package/tsconfig.json
CHANGED
Binary file
|