@xylabs/ts-scripts-yarn3 7.7.2 → 7.7.4
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/templates/readme/README.body.md +21 -1
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
|
Run commands via the `xy` CLI:
|
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
|
Run commands via the `xy` CLI:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/ts-scripts-yarn3",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.4",
|
|
4
4
|
"description": "TypeScript project scripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xylabs",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
],
|
|
44
44
|
"scripts": {
|
|
45
45
|
"package-clean": "echo Not cleaning...",
|
|
46
|
-
"package-compile": "tsup && publint",
|
|
47
|
-
"package-recompile": "tsup && publint"
|
|
46
|
+
"package-compile": "tsc -p tsconfig.build.json --noEmit && tsup && publint",
|
|
47
|
+
"package-recompile": "tsc -p tsconfig.build.json --noEmit && tsup && publint"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"yargs": "~18.0.0"
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
## Install
|
|
2
2
|
|
|
3
|
+
Using npm:
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm install {{name}}
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Using yarn:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
yarn add {{name}}
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Using pnpm:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
pnpm add {{name}}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Using bun:
|
|
22
|
+
|
|
3
23
|
```sh
|
|
4
|
-
|
|
24
|
+
bun add {{name}}
|
|
5
25
|
```
|