Skip to content

Commit ebbe6fe

Browse files
committed
Update ora
1 parent e52ce88 commit ebbe6fe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@
8181
"@types/minimatch": "3.0.3",
8282
"@types/mockery": "1.4.29",
8383
"@types/node": "~9.6.5",
84-
"@types/ora": "1.3.1",
8584
"@types/rimraf": "2.0.2",
8685
"@types/sinon": "~4.3.3",
8786
"@types/strip-ansi": "3.0.0",
@@ -137,7 +136,7 @@
137136
"mini-css-extract-plugin": "0.4.2",
138137
"minimatch": "3.0.4",
139138
"optimize-css-assets-webpack-plugin": "5.0.1",
140-
"ora": "1.3.0",
139+
"ora": "4.0.4",
141140
"pkg-dir": "2.0.0",
142141
"postcss-import": "12.0.0",
143142
"postcss-loader": "3.0.0",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ const command: Command = {
362362
args.experimental = args.experimental || {};
363363

364364
const spinner = ora();
365+
spinner.text = 'building';
365366
if (args.mode === 'dev') {
366367
config = devConfigFactory(args);
367368
} else if (args.mode === 'unit' || args.mode === 'test') {
@@ -383,7 +384,6 @@ const command: Command = {
383384
return fileWatch(config, args);
384385
}
385386

386-
spinner.text = 'building';
387387
return build(config, args, spinner);
388388
},
389389
eject(helper: Helper): EjectOutput {

0 commit comments

Comments
 (0)