arsam 1.0.2 → 2.0.0
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 +21 -1
- package/dist/index.js +41450 -48
- package/package.json +65 -28
- package/.eslintrc +0 -9
- package/.prettierrc +0 -7
- package/dist/data/cv.js +0 -42
package/README.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Arsam's résumé in the terminal 🤷🏻♂️
|
|
2
2
|
|
|
3
|
+
## What is this?
|
|
4
|
+
|
|
5
|
+
This is a command line tool that prints my résumé in the terminal. It's a fun way to show off your résumé to your friends, colleagues and potential employers.
|
|
6
|
+
|
|
7
|
+
## How to use it?
|
|
8
|
+
|
|
9
|
+
You can use `npx` to run this command without installing it.
|
|
10
|
+
|
|
11
|
+
```shell
|
|
12
|
+
npx arsam
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## How to install it?
|
|
16
|
+
|
|
17
|
+
You can install it globally using `npm` or `yarn`.
|
|
18
|
+
|
|
19
|
+
```shell
|
|
20
|
+
npm install -g arsam
|
|
21
|
+
```
|
|
22
|
+
|
|
3
23
|
```shell
|
|
4
|
-
|
|
24
|
+
yarn global add arsam
|
|
5
25
|
```
|