anichi 2.2.0 → 2.2.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 +3 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
````markdown
|
|
2
1
|
# 🎌 Anichi
|
|
3
2
|
|
|
4
3
|
<div align="center">
|
|
@@ -41,14 +40,11 @@ Make sure you have **Node.js** (v16 or higher) installed on your machine.
|
|
|
41
40
|
|
|
42
41
|
To run `anichi` from anywhere in your terminal, install it globally using npm:
|
|
43
42
|
|
|
44
|
-
```bash
|
|
45
|
-
npm install -g anichi
|
|
46
43
|
```
|
|
47
|
-
|
|
44
|
+
npm install -g anichi
|
|
48
45
|
|
|
49
46
|
Or using yarn:
|
|
50
47
|
|
|
51
|
-
```bash
|
|
52
48
|
yarn global add anichi
|
|
53
49
|
```
|
|
54
50
|
|
|
@@ -157,7 +153,7 @@ anichi/
|
|
|
157
153
|
├── package.json
|
|
158
154
|
├── tsconfig.json
|
|
159
155
|
└── bin/
|
|
160
|
-
└──
|
|
156
|
+
└── anichi # Entry point
|
|
161
157
|
```
|
|
162
158
|
|
|
163
159
|
### Available Scripts
|
|
@@ -175,7 +171,7 @@ git clone <your-repo-url>
|
|
|
175
171
|
cd anichi
|
|
176
172
|
npm install
|
|
177
173
|
npm run build
|
|
178
|
-
npm link
|
|
174
|
+
npm link
|
|
179
175
|
```
|
|
180
176
|
|
|
181
177
|
---
|
|
@@ -197,4 +193,3 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
197
193
|
<div align="center">
|
|
198
194
|
Made with ❤️ and ☕ by ShDitz
|
|
199
195
|
</div>
|
|
200
|
-
```
|