Skip to content

Commit

Permalink
Minor polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Dec 20, 2018
1 parent 0bf2d4d commit e7f14ad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build/lib/questions.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ exports.questionsAndText = [
],
action: actionsAndTransformers_1.checkMinSelections.bind(undefined, "feature", 1),
}),
"",
ansi_colors_1.underline("Nice! Let's get technical..."),
{
condition: { name: "features", contains: "Adapter" },
type: "select",
Expand Down
4 changes: 2 additions & 2 deletions maintenance/cacheLicenses.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Licenses are cached on build to prevent rate-limiting issues

import { yellow } from "ansi-colors";
import { green } from "ansi-colors";
import axios from "axios";
import * as fs from "fs-extra";
import * as path from "path";
Expand Down Expand Up @@ -58,6 +58,6 @@ async function loadLicenses() {
;
await fs.writeFile(licenseCacheFile, templateContent, "utf8");
} else {
console.log(yellow(`Licenses are already cached. Run this with the parameter --force to update them`));
console.log(green(`Licenses are already cached. Run this with the parameter --force to update them`));
}
})();
2 changes: 2 additions & 0 deletions src/lib/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ export const questionsAndText: (Question | string)[] = [
],
action: checkMinSelections.bind(undefined, "feature", 1),
}),
"",
underline("Nice! Let's get technical..."),
{
condition: { name: "features", contains: "Adapter" },
type: "select",
Expand Down

0 comments on commit e7f14ad

Please sign in to comment.