File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ Many of these functions are exposed to users within [Editions](https://github.co
3333 * [ ` .build ` ] ( #patternlab+build ) ⇒ <code >Promise</code >
3434 * [ ` .getDefaultConfig ` ] ( #patternlab+getDefaultConfig ) ⇒ <code >object</code >
3535 * [ ` .getSupportedTemplateExtensions ` ] ( #patternlab+getSupportedTemplateExtensions ) ⇒ <code >Array.< ; string> ; </code >
36- * [ ` .help ` ] ( #patternlab+help ) ⇒ <code >void</code >
3736 * [ ` .installplugin ` ] ( #patternlab+installplugin ) ⇒ <code >void</code >
3837 * [ ` .liststarterkits ` ] ( #patternlab+liststarterkits ) ⇒ <code >Promise</code >
3938 * [ ` .loadstarterkit ` ] ( #patternlab+loadstarterkit ) ⇒ <code >void</code >
@@ -85,13 +84,6 @@ Returns all file extensions supported by installed PatternEngines
8584
8685** Kind** : instance property of [ <code >patternlab</code >] ( #patternlab )
8786** Returns** : <code >Array.< ; string> ; </code > - all supported file extensions
88- <a name =" patternlab+help " ></a >
89-
90- ### ` patternlab.help ` ⇒ <code >void</code >
91- Logs usage to standard output
92-
93- ** Kind** : instance property of [ <code >patternlab</code >] ( #patternlab )
94- ** Returns** : <code >void</code > - Pattern Lab API usage, as console output
9587<a name =" patternlab+installplugin " ></a >
9688
9789### ` patternlab.installplugin ` ⇒ <code >void</code >
Original file line number Diff line number Diff line change 1313const updateNotifier = require ( 'update-notifier' ) ;
1414
1515const packageInfo = require ( '../package.json' ) ;
16- const help = require ( './lib/help' ) ;
1716const events = require ( './lib/events' ) ;
1817const pe = require ( './lib/pattern_exporter' ) ;
1918
@@ -180,18 +179,6 @@ const patternlab_module = function(config) {
180179 return patternlab . getSupportedTemplateExtensions ( ) ;
181180 } ,
182181
183- /**
184- * Logs usage to standard output
185- *
186- * @memberof patternlab
187- * @name help
188- * @instance
189- * @returns {void } Pattern Lab API usage, as console output
190- */
191- help : function ( ) {
192- logger . info ( help ( patternlab . package . version ) ) ;
193- } ,
194-
195182 /**
196183 * Installs plugin already available via `node_modules/`
197184 *
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -37,10 +37,6 @@ gulp.task('patternlab:version', function() {
3737 console . log ( patternlab . version ( ) ) ;
3838} ) ;
3939
40- gulp . task ( 'patternlab:help' , function ( ) {
41- patternlab . help ( ) ;
42- } ) ;
43-
4440gulp . task ( 'patternlab:patternsonly' , function ( ) {
4541 patternlab . patternsonly ( config . cleanPublic ) ;
4642} ) ;
You can’t perform that action at this time.
0 commit comments