Skip to content

Commit f2397fc

Browse files
committed
feat: add skeleton files
1 parent 813ddad commit f2397fc

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

bin/.gitkeep

Whitespace-only changes.

bin/cli.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env node
2+
'use strict'
3+
4+
console.log('OK')

index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
// todo
1+
'use strict'
2+
3+
module.exports = function () {
4+
console.warn('Warning: This package is a CLI tool, you should install it globally! See README.md for more information.')
5+
}

lib/parse.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'use strict'
2+
3+
// parse markdown file:
4+
// - extract metadata in yaml format
5+
// - extract main title from h1
6+
7+
// todo

0 commit comments

Comments
 (0)