heading-case 0.0.0 → 0.0.1

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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # heading-case
2
2
 
3
+ Format page titles and section headings in markdown files to use sentence-style capitalization.
4
+
3
5
  <p>
4
6
  <a href="https://npmjs.com/package/heading-case">
5
7
  <img src="https://img.shields.io/npm/v/heading-case?style=flat-square&colorA=564341&colorB=EDED91" alt="npm version" />
package/bin.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { headingCase } from './dist/index.js';
3
+
4
+ headingCase();
package/dist/dict.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const dict: string[];
package/dist/index.d.ts CHANGED
@@ -1 +1,4 @@
1
- export {};
1
+ export declare function globMarkdownFiles(cwd: string): Promise<string[]>;
2
+ export declare function headingCase({ root, }?: {
3
+ root?: string;
4
+ }): Promise<void>;