@diplodoc/cli 4.30.0 → 4.31.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/build/index.js +5 -2
- package/build/index.js.map +2 -2
- package/package.json +1 -1
- package/src/cmd/build/index.ts +4 -0
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"author": "Yandex Data UI Team <data-ui@yandex-team.ru>",
|
|
4
4
|
"description": "Make documentation using yfm-docs in Markdown and HTML formats",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "4.
|
|
6
|
+
"version": "4.31.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git@github.com:diplodoc-platform/cli.git"
|
package/src/cmd/build/index.ts
CHANGED
|
@@ -179,6 +179,10 @@ async function handler(args: Arguments<any>) {
|
|
|
179
179
|
const tmpInputFolder = resolve(args.output, TMP_INPUT_FOLDER);
|
|
180
180
|
const tmpOutputFolder = resolve(args.output, TMP_OUTPUT_FOLDER);
|
|
181
181
|
|
|
182
|
+
if (typeof VERSION !== 'undefined') {
|
|
183
|
+
console.log(`Using v${VERSION} version`);
|
|
184
|
+
}
|
|
185
|
+
|
|
182
186
|
try {
|
|
183
187
|
ArgvService.init({
|
|
184
188
|
...args,
|