@teambit/community 1.0.228 → 1.0.229
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/schema.json +19 -7
- package/dist/community.aspect.d.ts +2 -0
- package/dist/community.main.runtime.d.ts +16 -0
- package/dist/index.d.ts +4 -0
- package/package.json +5 -5
- package/tsconfig.json +1 -10
- /package/dist/{preview-1712805335812.js → preview-1712822929999.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<testsuites tests="0" failures="0" errors="0" skipped="0">
|
|
3
|
-
<testsuite name="teambit.community/community@1.0.
|
|
3
|
+
<testsuite name="teambit.community/community@1.0.229" tests="0" failures="0" errors="0" skipped="0"/>
|
|
4
4
|
</testsuites>
|
package/artifacts/schema.json
CHANGED
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"line": 20,
|
|
49
49
|
"character": 21
|
|
50
50
|
},
|
|
51
|
-
"name": "CommunityWorkspaceConfig"
|
|
51
|
+
"name": "CommunityWorkspaceConfig",
|
|
52
|
+
"internalFilePath": "community.main.runtime.ts"
|
|
52
53
|
},
|
|
53
54
|
"isOptional": false,
|
|
54
55
|
"isSpread": false
|
|
@@ -225,7 +226,11 @@
|
|
|
225
226
|
"line": 39,
|
|
226
227
|
"character": 33
|
|
227
228
|
},
|
|
228
|
-
"name": "GeneratorMain"
|
|
229
|
+
"name": "GeneratorMain",
|
|
230
|
+
"componentId": {
|
|
231
|
+
"scope": "teambit.generator",
|
|
232
|
+
"name": "generator"
|
|
233
|
+
}
|
|
229
234
|
}
|
|
230
235
|
]
|
|
231
236
|
},
|
|
@@ -247,7 +252,8 @@
|
|
|
247
252
|
"line": 39,
|
|
248
253
|
"character": 57
|
|
249
254
|
},
|
|
250
|
-
"name": "CommunityWorkspaceConfig"
|
|
255
|
+
"name": "CommunityWorkspaceConfig",
|
|
256
|
+
"internalFilePath": "community.main.runtime.ts"
|
|
251
257
|
},
|
|
252
258
|
"isOptional": false,
|
|
253
259
|
"isSpread": false
|
|
@@ -407,7 +413,8 @@
|
|
|
407
413
|
"line": 20,
|
|
408
414
|
"character": 21
|
|
409
415
|
},
|
|
410
|
-
"name": "CommunityWorkspaceConfig"
|
|
416
|
+
"name": "CommunityWorkspaceConfig",
|
|
417
|
+
"internalFilePath": "community.main.runtime.ts"
|
|
411
418
|
},
|
|
412
419
|
"isOptional": false,
|
|
413
420
|
"isSpread": false
|
|
@@ -584,7 +591,11 @@
|
|
|
584
591
|
"line": 39,
|
|
585
592
|
"character": 33
|
|
586
593
|
},
|
|
587
|
-
"name": "GeneratorMain"
|
|
594
|
+
"name": "GeneratorMain",
|
|
595
|
+
"componentId": {
|
|
596
|
+
"scope": "teambit.generator",
|
|
597
|
+
"name": "generator"
|
|
598
|
+
}
|
|
588
599
|
}
|
|
589
600
|
]
|
|
590
601
|
},
|
|
@@ -606,7 +617,8 @@
|
|
|
606
617
|
"line": 39,
|
|
607
618
|
"character": 57
|
|
608
619
|
},
|
|
609
|
-
"name": "CommunityWorkspaceConfig"
|
|
620
|
+
"name": "CommunityWorkspaceConfig",
|
|
621
|
+
"internalFilePath": "community.main.runtime.ts"
|
|
610
622
|
},
|
|
611
623
|
"isOptional": false,
|
|
612
624
|
"isSpread": false
|
|
@@ -685,7 +697,7 @@
|
|
|
685
697
|
"componentId": {
|
|
686
698
|
"scope": "teambit.community",
|
|
687
699
|
"name": "community",
|
|
688
|
-
"version": "1.0.
|
|
700
|
+
"version": "1.0.229"
|
|
689
701
|
},
|
|
690
702
|
"taggedModuleExports": []
|
|
691
703
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { GeneratorMain } from '@teambit/generator';
|
|
2
|
+
export interface CommunityWorkspaceConfig {
|
|
3
|
+
communityDomain: string;
|
|
4
|
+
docsDomain: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class CommunityMain {
|
|
7
|
+
private config;
|
|
8
|
+
constructor(config: CommunityWorkspaceConfig);
|
|
9
|
+
getBaseDomain(): string;
|
|
10
|
+
getDocsDomain(): string;
|
|
11
|
+
static slots: never[];
|
|
12
|
+
static dependencies: import("@teambit/harmony").Aspect[];
|
|
13
|
+
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
14
|
+
static defaultConfig: CommunityWorkspaceConfig;
|
|
15
|
+
static provider(_deps: [GeneratorMain], config: CommunityWorkspaceConfig): Promise<CommunityMain>;
|
|
16
|
+
}
|
package/dist/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/community",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.229",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/community/community",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.community",
|
|
8
8
|
"name": "community",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.229"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@teambit/harmony": "0.4.6",
|
|
13
|
-
"@teambit/cli": "0.0.
|
|
14
|
-
"@teambit/generator": "1.0.
|
|
13
|
+
"@teambit/cli": "0.0.862",
|
|
14
|
+
"@teambit/generator": "1.0.230"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/mocha": "9.1.0",
|
|
18
18
|
"chai": "4.3.0",
|
|
19
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
19
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@teambit/legacy": "1.0.624"
|
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,13 +35,5 @@
|
|
|
36
35
|
"include": [
|
|
37
36
|
"**/*",
|
|
38
37
|
"**/*.json"
|
|
39
|
-
],
|
|
40
|
-
"references": [
|
|
41
|
-
{
|
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.generator_generator@1.0.229"
|
|
46
|
-
}
|
|
47
38
|
]
|
|
48
39
|
}
|
|
File without changes
|