Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Developer #3

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
49f9dd6
Package
DaniRami Sep 10, 2020
c96d6b8
configuracion del packge.json
DaniRami Sep 12, 2020
e99b673
prueba de fs para leer un texto plano
DaniRami Sep 12, 2020
92289cb
comando creado
DaniRami Sep 12, 2020
9f88e3a
Prueba al object fileSytem
DaniRami Sep 12, 2020
f67ec7c
descripcion del proyecto
DaniRami Sep 13, 2020
5665d23
línea de Shebang
DaniRami Sep 13, 2020
16e0cfd
packge.json
DaniRami Sep 13, 2020
7f0a14e
funciones y pruebas
DaniRami Sep 30, 2020
419bb99
funciones y test
DaniRami Sep 30, 2020
4e8f16e
funciones y test
DaniRami Oct 1, 2020
c2f3a37
npmrc
DaniRami Oct 1, 2020
c69fc70
npmrc
DaniRami Oct 1, 2020
6895895
npmrc
DaniRami Oct 1, 2020
a652a0a
registry
DaniRami Oct 1, 2020
2a063ff
npmrc
DaniRami Oct 1, 2020
a426e55
packs
DaniRami Oct 1, 2020
2173180
config
DaniRami Oct 1, 2020
734a422
readme
DaniRami Oct 5, 2020
329c432
README
DaniRami Oct 5, 2020
c62a365
README
DaniRami Oct 5, 2020
13f950c
npmrc
DaniRami Oct 5, 2020
906f71f
npmrc
DaniRami Oct 5, 2020
0c7a4e0
README
DaniRami Oct 5, 2020
832a655
packege
DaniRami Oct 5, 2020
b86c1fd
README
DaniRami Oct 5, 2020
67b9c7f
README
DaniRami Oct 5, 2020
a226f29
README
DaniRami Oct 5, 2020
e0a7096
imagen
DaniRami Oct 5, 2020
ec8d253
README
DaniRami Oct 5, 2020
086bcab
README
DaniRami Oct 5, 2020
be7d608
README
DaniRami Oct 5, 2020
f25a2c6
README
DaniRami Oct 5, 2020
db1a043
readme
DaniRami Oct 5, 2020
b5e1d57
README
DaniRami Oct 5, 2020
0f89d03
README
DaniRami Oct 5, 2020
30c9cbc
README
DaniRami Oct 5, 2020
7799366
README
DaniRami Oct 5, 2020
09ab080
npmdrc
DaniRami Oct 5, 2020
f6cff21
packege
DaniRami Oct 5, 2020
8d7e970
readme
DaniRami Oct 5, 2020
9e61172
README
DaniRami Oct 5, 2020
ed8c579
README
DaniRami Oct 5, 2020
5813e3d
README
DaniRami Oct 5, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.swp
.nyc_output/
coverage/
node_modules/

node_modules
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://npm.pkg.github.com/@danirami
13 changes: 13 additions & 0 deletions CLI/cli.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env node
const md_checkLinks = require('../src');
const {cli} = require('../src/Options')

const PATH = process.argv[2];
const options = process.argv[3];
const option2 = process.argv[4];


cli(PATH, options, option2)
.then((resp) => console.log(resp))
.catch((err) => console.log(err));

Loading