slds-json-schema-renderer 1.3.3 → 1.4.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/bin/cli.js
CHANGED
|
@@ -21,14 +21,6 @@ program
|
|
|
21
21
|
.option('-v, --verbose', 'Enable verbose output', false)
|
|
22
22
|
.action(cli.generate)
|
|
23
23
|
|
|
24
|
-
// Add the init command for future implementation
|
|
25
|
-
program
|
|
26
|
-
.command('init')
|
|
27
|
-
.description('Initialize a new documentation project')
|
|
28
|
-
.action(() => {
|
|
29
|
-
console.log('Initialize command not yet implemented')
|
|
30
|
-
})
|
|
31
|
-
|
|
32
24
|
program.parse(process.argv)
|
|
33
25
|
|
|
34
26
|
// If no arguments, display help
|