codeweaver 3.0.1 → 3.0.2
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 +4 -4
- package/command.js +0 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -26,8 +26,8 @@ To get started with the project, follow these steps:
|
|
|
26
26
|
1. **Clone the repository**:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npm
|
|
30
|
-
npx
|
|
29
|
+
npm i -g codeweaver
|
|
30
|
+
npx codeweaver my-app
|
|
31
31
|
cd my-app
|
|
32
32
|
```
|
|
33
33
|
|
|
@@ -36,13 +36,13 @@ To get started with the project, follow these steps:
|
|
|
36
36
|
Using pnpm:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
pnpm
|
|
39
|
+
pnpm i
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
Using npm:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
npm
|
|
45
|
+
npm i
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
3. **Run the application**:
|
package/command.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeweaver",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"main": "src/main.ts",
|
|
5
|
+
"bin": {
|
|
6
|
+
"codeweaver": "./command.js"
|
|
7
|
+
},
|
|
5
8
|
"scripts": {
|
|
6
9
|
"start": "nodemon -r tsconfig-paths/register src/main.ts",
|
|
7
10
|
"dev": "nodemon -r tsconfig-paths/register src/main.ts",
|