@vima_tech/flywheel 1.2.1 → 1.2.2
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/bin/flywheel.js +2 -1
- package/package.json +1 -1
package/bin/flywheel.js
CHANGED
|
@@ -3,6 +3,7 @@ const { spawn, execSync } = require('child_process');
|
|
|
3
3
|
const path = require('path');
|
|
4
4
|
const fs = require('fs');
|
|
5
5
|
const os = require('os');
|
|
6
|
+
const readline = require('readline');
|
|
6
7
|
|
|
7
8
|
const NPM_PKG = '@vima_tech/flywheel';
|
|
8
9
|
|
|
@@ -361,7 +362,7 @@ switch (command) {
|
|
|
361
362
|
case '--version':
|
|
362
363
|
case '-V':
|
|
363
364
|
case 'version':
|
|
364
|
-
console.log('@vima_tech/flywheel v1.2.
|
|
365
|
+
console.log('@vima_tech/flywheel v1.2.2');
|
|
365
366
|
break;
|
|
366
367
|
case 'new':
|
|
367
368
|
case 'create':
|