Skip to content

Commit b5763e9

Browse files
committed
Merge branch 'dev' into fix/835-viewall
2 parents 246adce + 023562c commit b5763e9

File tree

5 files changed

+0
-74
lines changed

5 files changed

+0
-74
lines changed

packages/core/docs/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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.&lt;string&gt;</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.&lt;string&gt;</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>

packages/core/src/index.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
const updateNotifier = require('update-notifier');
1414

1515
const packageInfo = require('../package.json');
16-
const help = require('./lib/help');
1716
const events = require('./lib/events');
1817
const 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
*

packages/core/src/lib/help.js

Lines changed: 0 additions & 33 deletions
This file was deleted.

packages/core/test/help_tests.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

packages/edition-node-gulp/gulpfile.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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-
4440
gulp.task('patternlab:patternsonly', function() {
4541
patternlab.patternsonly(config.cleanPublic);
4642
});

0 commit comments

Comments
 (0)