@teambit/host-initializer 0.0.742 → 0.0.744
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/agents-template-git.md
CHANGED
|
@@ -101,6 +101,7 @@ bit validate # lint + type-check + tests (fast build)
|
|
|
101
101
|
bit test # run tests only
|
|
102
102
|
bit lint # run linter only
|
|
103
103
|
bit check-types # TypeScript type checker only
|
|
104
|
+
bit ripple <sub-command> # manage Ripple CI jobs on bit.cloud — list/log/errors/retry/stop (jobs that build components in the cloud after export)
|
|
104
105
|
```
|
|
105
106
|
|
|
106
107
|
> **Never run `bit build`** unless absolutely necessary. Always use `bit validate` instead — it's faster and sufficient.
|
|
@@ -245,6 +246,8 @@ git push # push your branch
|
|
|
245
246
|
|
|
246
247
|
> Focus on development workflows: component creation, modification, testing, and local validation. Leave versioning and publishing to CI.
|
|
247
248
|
|
|
249
|
+
Those CI builds run as Ripple CI jobs on bit.cloud. Use `bit ripple list` to see recent jobs, `bit ripple log` to follow one, and `bit ripple errors` to inspect build failures.
|
|
250
|
+
|
|
248
251
|
---
|
|
249
252
|
|
|
250
253
|
## Component Structure
|
package/agents-template.md
CHANGED
|
@@ -99,6 +99,7 @@ bit validate # lint + type-check + tests (fast build)
|
|
|
99
99
|
bit test # run tests only
|
|
100
100
|
bit lint # run linter only
|
|
101
101
|
bit check-types # TypeScript type checker only
|
|
102
|
+
bit ripple <sub-command> # manage Ripple CI jobs on bit.cloud — list/log/errors/retry/stop (jobs that build components in the cloud after export)
|
|
102
103
|
```
|
|
103
104
|
|
|
104
105
|
> **Never run `bit build`** unless absolutely necessary. Always use `bit validate` instead — it's faster and sufficient.
|
|
@@ -236,6 +237,8 @@ bit export # push lane to remote
|
|
|
236
237
|
|
|
237
238
|
> Always run `bit lane create` first. If you're already on a non-main lane, continue using it — don't create a new one.
|
|
238
239
|
|
|
240
|
+
After exporting, components are built in the cloud by Ripple CI. Use `bit ripple log` to follow the current lane's job and `bit ripple errors` to inspect any build failures (or `bit ripple retry` to re-run it).
|
|
241
|
+
|
|
239
242
|
---
|
|
240
243
|
|
|
241
244
|
## Component Structure
|
|
@@ -101,6 +101,7 @@ bit validate # lint + type-check + tests (fast build)
|
|
|
101
101
|
bit test # run tests only
|
|
102
102
|
bit lint # run linter only
|
|
103
103
|
bit check-types # TypeScript type checker only
|
|
104
|
+
bit ripple <sub-command> # manage Ripple CI jobs on bit.cloud — list/log/errors/retry/stop (jobs that build components in the cloud after export)
|
|
104
105
|
```
|
|
105
106
|
|
|
106
107
|
> **Never run `bit build`** unless absolutely necessary. Always use `bit validate` instead — it's faster and sufficient.
|
|
@@ -245,6 +246,8 @@ git push # push your branch
|
|
|
245
246
|
|
|
246
247
|
> Focus on development workflows: component creation, modification, testing, and local validation. Leave versioning and publishing to CI.
|
|
247
248
|
|
|
249
|
+
Those CI builds run as Ripple CI jobs on bit.cloud. Use `bit ripple list` to see recent jobs, `bit ripple log` to follow one, and `bit ripple errors` to inspect build failures.
|
|
250
|
+
|
|
248
251
|
---
|
|
249
252
|
|
|
250
253
|
## Component Structure
|
package/dist/agents-template.md
CHANGED
|
@@ -99,6 +99,7 @@ bit validate # lint + type-check + tests (fast build)
|
|
|
99
99
|
bit test # run tests only
|
|
100
100
|
bit lint # run linter only
|
|
101
101
|
bit check-types # TypeScript type checker only
|
|
102
|
+
bit ripple <sub-command> # manage Ripple CI jobs on bit.cloud — list/log/errors/retry/stop (jobs that build components in the cloud after export)
|
|
102
103
|
```
|
|
103
104
|
|
|
104
105
|
> **Never run `bit build`** unless absolutely necessary. Always use `bit validate` instead — it's faster and sufficient.
|
|
@@ -236,6 +237,8 @@ bit export # push lane to remote
|
|
|
236
237
|
|
|
237
238
|
> Always run `bit lane create` first. If you're already on a non-main lane, continue using it — don't create a new one.
|
|
238
239
|
|
|
240
|
+
After exporting, components are built in the cloud by Ripple CI. Use `bit ripple log` to follow the current lane's job and `bit ripple errors` to inspect any build failures (or `bit ripple retry` to re-run it).
|
|
241
|
+
|
|
239
242
|
---
|
|
240
243
|
|
|
241
244
|
## Component Structure
|
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/host-initializer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.744",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/harmony/host-initializer",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.harmony",
|
|
8
8
|
"name": "host-initializer",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.744"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"lodash": "4.17.21",
|
|
13
13
|
"chalk": "4.1.2",
|
|
14
14
|
"enquirer": "2.4.1",
|
|
15
15
|
"fs-extra": "10.0.0",
|
|
16
|
+
"@teambit/component.sources": "0.0.182",
|
|
17
|
+
"@teambit/config": "0.0.1517",
|
|
18
|
+
"@teambit/legacy.bit-map": "0.0.187",
|
|
19
|
+
"@teambit/legacy.consumer": "0.0.130",
|
|
20
|
+
"@teambit/legacy.scope": "0.0.130",
|
|
16
21
|
"@teambit/legacy.utils": "0.0.39",
|
|
17
22
|
"@teambit/toolbox.string.random": "0.0.14",
|
|
18
23
|
"@teambit/harmony": "0.4.7",
|
|
24
|
+
"@teambit/cli": "0.0.1342",
|
|
25
|
+
"@teambit/logger": "0.0.1435",
|
|
19
26
|
"@teambit/mcp.mcp-config-writer": "0.0.9",
|
|
20
27
|
"@teambit/scope.modules.find-scope-path": "0.0.33",
|
|
21
28
|
"@teambit/toolbox.fs.is-dir-empty": "0.0.14",
|
|
22
29
|
"@teambit/workspace.modules.workspace-locator": "0.0.32",
|
|
23
30
|
"@teambit/bit-error": "0.0.404",
|
|
24
|
-
"@teambit/legacy.constants": "0.0.31",
|
|
25
|
-
"@teambit/component.sources": "0.0.182",
|
|
26
|
-
"@teambit/config": "0.0.1517",
|
|
27
|
-
"@teambit/legacy.bit-map": "0.0.187",
|
|
28
|
-
"@teambit/legacy.consumer": "0.0.130",
|
|
29
|
-
"@teambit/legacy.scope": "0.0.130",
|
|
30
|
-
"@teambit/cli": "0.0.1342",
|
|
31
|
-
"@teambit/logger": "0.0.1435",
|
|
32
|
-
"@teambit/objects": "0.0.536",
|
|
33
31
|
"@teambit/config-store": "0.0.223",
|
|
34
|
-
"@teambit/legacy.
|
|
32
|
+
"@teambit/legacy.constants": "0.0.31",
|
|
33
|
+
"@teambit/legacy.scope-api": "0.0.185",
|
|
34
|
+
"@teambit/objects": "0.0.538"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/lodash": "4.14.165",
|
|
File without changes
|