File tree Expand file tree Collapse file tree 5 files changed +0
-74
lines changed Expand file tree Collapse file tree 5 files changed +0
-74
lines changed 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
33
33
* [ ` .build ` ] ( #patternlab+build ) ⇒ <code >Promise</code >
34
34
* [ ` .getDefaultConfig ` ] ( #patternlab+getDefaultConfig ) ⇒ <code >object</code >
35
35
* [ ` .getSupportedTemplateExtensions ` ] ( #patternlab+getSupportedTemplateExtensions ) ⇒ <code >Array.< ; string> ; </code >
36
- * [ ` .help ` ] ( #patternlab+help ) ⇒ <code >void</code >
37
36
* [ ` .installplugin ` ] ( #patternlab+installplugin ) ⇒ <code >void</code >
38
37
* [ ` .liststarterkits ` ] ( #patternlab+liststarterkits ) ⇒ <code >Promise</code >
39
38
* [ ` .loadstarterkit ` ] ( #patternlab+loadstarterkit ) ⇒ <code >void</code >
@@ -85,13 +84,6 @@ Returns all file extensions supported by installed PatternEngines
85
84
86
85
** Kind** : instance property of [ <code >patternlab</code >] ( #patternlab )
87
86
** 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
95
87
<a name =" patternlab+installplugin " ></a >
96
88
97
89
### ` patternlab.installplugin ` ⇒ <code >void</code >
Original file line number Diff line number Diff line change 13
13
const updateNotifier = require ( 'update-notifier' ) ;
14
14
15
15
const packageInfo = require ( '../package.json' ) ;
16
- const help = require ( './lib/help' ) ;
17
16
const events = require ( './lib/events' ) ;
18
17
const pe = require ( './lib/pattern_exporter' ) ;
19
18
@@ -180,18 +179,6 @@ const patternlab_module = function(config) {
180
179
return patternlab . getSupportedTemplateExtensions ( ) ;
181
180
} ,
182
181
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
-
195
182
/**
196
183
* Installs plugin already available via `node_modules/`
197
184
*
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() {
37
37
console . log ( patternlab . version ( ) ) ;
38
38
} ) ;
39
39
40
- gulp . task ( 'patternlab:help' , function ( ) {
41
- patternlab . help ( ) ;
42
- } ) ;
43
-
44
40
gulp . task ( 'patternlab:patternsonly' , function ( ) {
45
41
patternlab . patternsonly ( config . cleanPublic ) ;
46
42
} ) ;
You can’t perform that action at this time.
0 commit comments