Skip to content

Commit

Permalink
Merge branch 'chore/cross-os-jsonlint' into chore/tsc-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Jan 24, 2020
2 parents a518b8a + 54c4613 commit 4c69933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/jsonlint.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const fse = require('fs-extra');
const glob = require('glob-gitignore');
const path = require('path');

const passMessage = chalk.gray;
const failMessage = chalk.whiteBright;
const passMessage = message => `✓ ${chalk.gray(message)}`;
const failMessage = message => `✗ ${chalk.whiteBright(message)}`;

async function run() {
const workspaceRoot = path.resolve(__dirname, '..');
Expand Down

0 comments on commit 4c69933

Please sign in to comment.