We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7f103 commit f9dcd4dCopy full SHA for f9dcd4d
packages/cli/bin/cli-actions/version.js
@@ -1,8 +1,6 @@
1
'use strict';
2
const patternlab = require('@pattern-lab/core');
3
-const config = Object.assign(patternlab.getDefaultConfig(), {
4
- logLevel: 'quiet',
5
-});
6
7
-module.exports = ({ version }) =>
8
- `${version} (PatternLab Node Core version: ${patternlab(config).version()})`;
+module.exports = ({ version }) => {
+ `${version} (PatternLab Node Core version: ${patternlab.getVersion()})`;
+};
0 commit comments