Skip to content

Commit

Permalink
Fix prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andyrichardson committed Dec 3, 2021
1 parent ad0eeaa commit 20efb00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,5 +570,4 @@

\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_


\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_
5 changes: 4 additions & 1 deletion scripts/cli.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env node
const { spawn } = require("child_process");
spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ["start"], { stdio: "inherit", cwd: `${__dirname}/..` });
spawn(/^win/.test(process.platform) ? "npm.cmd" : "npm", ["start"], {
stdio: "inherit",
cwd: `${__dirname}/..`,
});

0 comments on commit 20efb00

Please sign in to comment.