Skip to content

Commit 626e3a2

Browse files
committed
fixed node 13
1 parent 1117edb commit 626e3a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/generator-reshow/generators/app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ module.exports = class extends YoGenerator {
6060
}
6161

6262
async end() {
63-
if (!this.options?.skipInstall) {
63+
if (!this.options.skipInstall) {
6464
const { say, onExit } = YoHelper(this);
6565
await this.spawnCommand("./compile.sh", ["s", "open"]);
6666
sonExit(() => ay("Check the web browser, it should autoload now."));

packages/generator-reshow/generators/library/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = class extends YoGenerator {
6363
}
6464

6565
end() {
66-
if (!this.options?.skipInstall) {
66+
if (!this.options.skipInstall) {
6767
const { say, onExit } = YoHelper(this);
6868
onExit(() => say('Next you could try "npm run build" or "npm run test"'));
6969
}

packages/generator-reshow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-reshow",
3-
"version": "0.15.2",
3+
"version": "0.15.3",
44
"description": "Yeoman generator for reshow. (app, generator, ...etc)",
55
"author": "Hill <hill@kimo.com>",
66
"repository": {

0 commit comments

Comments
 (0)