@servicetitan/docs-uikit 24.0.4 → 24.1.1
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/docs/startup.mdx +8 -0
- package/package.json +2 -2
package/docs/startup.mdx
CHANGED
|
@@ -8,6 +8,10 @@ import { VersionHistory, Changes } from '@site/src/components/version-history';
|
|
|
8
8
|
[@servicetitan/startup](https://github.com/servicetitan/uikit/tree/master/packages/startup) is a command-line interface (CLI) to create multi-package Lerna projects with the support of TypeScript Project References and React. It offers a modern build setup with no configuration.
|
|
9
9
|
|
|
10
10
|
<VersionHistory>
|
|
11
|
+
<Changes forVersion="24.1.0">
|
|
12
|
+
Changed <code>init</code> command to generate React 18 project by default
|
|
13
|
+
and added <code>--react17</code> switch to generate React 17 project.
|
|
14
|
+
</Changes>
|
|
11
15
|
<Changes forVersion="24.0.0">
|
|
12
16
|
<Admonition type="caution">
|
|
13
17
|
<p>
|
|
@@ -131,6 +135,10 @@ Generates initial project structure. This command should be run via `npx` in an
|
|
|
131
135
|
npx -y @servicetitan/startup@latest init
|
|
132
136
|
```
|
|
133
137
|
|
|
138
|
+
#### Arguments
|
|
139
|
+
|
|
140
|
+
- `--react17` - Generate a project that uses React 17.x instead of React 18.x
|
|
141
|
+
|
|
134
142
|
### install
|
|
135
143
|
|
|
136
144
|
Installs the package dependencies. This command should be run via `npx` before the build.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servicetitan/docs-uikit",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"cli": {
|
|
17
17
|
"webpack": false
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "ffae5820df5a370516c3e6a8b71d44cc3bacd06e"
|
|
20
20
|
}
|