@xylabs/ts-scripts-react-yarn3 7.7.3 → 7.7.5
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.body.md +20 -0
- package/README.md +14 -0
- package/package.json +3 -3
package/README.body.md
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
## Install
|
|
2
2
|
|
|
3
|
+
Using npm:
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm install -D {{name}}
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Using yarn:
|
|
10
|
+
|
|
3
11
|
```sh
|
|
4
12
|
yarn add -D {{name}}
|
|
5
13
|
```
|
|
6
14
|
|
|
15
|
+
Using pnpm:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
pnpm add -D {{name}}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Using bun:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
bun add -D {{name}}
|
|
25
|
+
```
|
|
26
|
+
|
|
7
27
|
## Usage
|
|
8
28
|
|
|
9
29
|
This package extends [`@xylabs/ts-scripts-yarn3`](https://www.npmjs.com/package/@xylabs/ts-scripts-yarn3) with React-specific commands. All base commands are available, plus:
|
package/README.md
CHANGED
|
@@ -9,10 +9,24 @@
|
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
+
Using npm:
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npm install -D {{name}}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Using yarn:
|
|
19
|
+
|
|
12
20
|
```sh
|
|
13
21
|
yarn add -D {{name}}
|
|
14
22
|
```
|
|
15
23
|
|
|
24
|
+
Using pnpm:
|
|
25
|
+
|
|
26
|
+
```sh
|
|
27
|
+
pnpm add -D {{name}}
|
|
28
|
+
```
|
|
29
|
+
|
|
16
30
|
## Usage
|
|
17
31
|
|
|
18
32
|
This package extends [`@xylabs/ts-scripts-yarn3`](https://www.npmjs.com/package/@xylabs/ts-scripts-yarn3) with React-specific commands. All base commands are available, plus:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/ts-scripts-react-yarn3",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.5",
|
|
4
4
|
"description": "TypeScript project scripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xylabs",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
],
|
|
51
51
|
"scripts": {
|
|
52
52
|
"package-clean": "echo Not cleaning...",
|
|
53
|
-
"package-compile": "tsup && publint",
|
|
54
|
-
"package-recompile": "tsup && publint"
|
|
53
|
+
"package-compile": "tsc -p tsconfig.build.json --noEmit && tsup && publint",
|
|
54
|
+
"package-recompile": "tsc -p tsconfig.build.json --noEmit && tsup && publint"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@xylabs/ts-scripts-yarn3": "workspace:~",
|