@c15t/cli 2.0.0-rc.6 → 2.0.0
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/README.md +8 -8
- package/dist/145.mjs +1223 -332
- package/dist/generate-files.mjs +64 -90
- package/dist-types/auth/base-url.d.ts +2 -2
- package/dist-types/auth/config-store.d.ts +2 -2
- package/dist-types/auth/types.d.ts +1 -1
- package/dist-types/commands/generate/prompts/mode-select.d.ts +1 -1
- package/dist-types/commands/generate/templates/css.d.ts +10 -11
- package/dist-types/commands/generate/templates/shared/components.d.ts +1 -1
- package/dist-types/commands/generate/templates/shared/framework-config.d.ts +0 -4
- package/dist-types/commands/index.d.ts +1 -1
- package/dist-types/commands/instances/index.d.ts +13 -8
- package/dist-types/commands/self-host/migrate/migrator-result.d.ts +1 -1
- package/dist-types/commands/self-host/migrate/orm-result.d.ts +1 -1
- package/dist-types/commands/self-host/migrate/read-config.d.ts +1 -1
- package/dist-types/commands/shared/stylesheets.d.ts +19 -0
- package/dist-types/constants.d.ts +19 -7
- package/dist-types/context/types.d.ts +3 -1
- package/dist-types/control-plane/client.d.ts +6 -6
- package/dist-types/control-plane/types.d.ts +5 -5
- package/dist-types/core/errors.d.ts +10 -10
- package/dist-types/core/telemetry.d.ts +2 -77
- package/dist-types/machines/generate/actors/prompts.d.ts +1 -1
- package/dist-types/machines/generate/machine.d.ts +7 -7
- package/dist-types/machines/generate/types.d.ts +2 -2
- package/dist-types/types.d.ts +8 -18
- package/dist-types/utils/logger.d.ts +7 -6
- package/dist-types/utils/telemetry.d.ts +61 -117
- package/dist-types/utils/validation.d.ts +2 -2
- package/package.json +9 -9
- package/readme.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://
|
|
2
|
+
<a href="https://c15t.com?utm_source=github&utm_medium=repopage_%40c15t%2Fcli" target="_blank" rel="noopener noreferrer">
|
|
3
3
|
<picture>
|
|
4
4
|
<source media="(prefers-color-scheme: dark)" srcset="../../docs/assets/c15t-banner-readme-dark.svg" type="image/svg+xml">
|
|
5
5
|
<img src="../../docs/assets/c15t-banner-readme-light.svg" alt="c15t Banner" type="image/svg+xml">
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
[](https://github.com/c15t/c15t)
|
|
13
13
|
[](https://github.com/c15t/c15t/actions/workflows/ci.yml)
|
|
14
|
-
[](https://github.com/c15t/c15t/blob/main/LICENSE.md)
|
|
15
15
|
[](https://c15t.link/discord)
|
|
16
16
|
[](https://www.npmjs.com/package/@c15t/cli)
|
|
17
17
|
[](https://github.com/c15t/c15t)
|
|
@@ -50,7 +50,7 @@ pnpm dlx @c15t/cli setup
|
|
|
50
50
|
The CLI will:
|
|
51
51
|
|
|
52
52
|
- Install necessary packages
|
|
53
|
-
- Configure your c15t
|
|
53
|
+
- Configure your c15t project
|
|
54
54
|
- Set up environment variables
|
|
55
55
|
- Add consent management components to your app
|
|
56
56
|
|
|
@@ -117,7 +117,7 @@ Disable telemetry by:
|
|
|
117
117
|
|
|
118
118
|
## Documentation
|
|
119
119
|
|
|
120
|
-
For further information, guides, and examples visit the [reference documentation](https://
|
|
120
|
+
For further information, guides, and examples visit the [reference documentation](https://c15t.com/docs/cli/overview).
|
|
121
121
|
|
|
122
122
|
## Support
|
|
123
123
|
|
|
@@ -129,8 +129,8 @@ For further information, guides, and examples visit the [reference documentation
|
|
|
129
129
|
## Contributing
|
|
130
130
|
|
|
131
131
|
- We're open to all community contributions!
|
|
132
|
-
- Read our [Contribution Guidelines](https://
|
|
133
|
-
- Review our [Code of Conduct](https://
|
|
132
|
+
- Read our [Contribution Guidelines](https://c15t.com/docs/oss/contributing)
|
|
133
|
+
- Review our [Code of Conduct](https://c15t.com/docs/oss/code-of-conduct)
|
|
134
134
|
- Fork the repository
|
|
135
135
|
- Create a new branch for your feature
|
|
136
136
|
- Submit a pull request
|
|
@@ -151,8 +151,8 @@ Our preference is that you make use of GitHub's private vulnerability reporting
|
|
|
151
151
|
|
|
152
152
|
## License
|
|
153
153
|
|
|
154
|
-
[
|
|
154
|
+
[Apache License 2.0](https://github.com/c15t/c15t/blob/main/LICENSE.md)
|
|
155
155
|
|
|
156
156
|
---
|
|
157
157
|
|
|
158
|
-
**Built
|
|
158
|
+
**Built by [Inth](https://inth.com?utm_source=github&utm_medium=repopage_%40c15t%2Fcli)**
|