Skip to content

Commit

Permalink
change emoji in CLI (#5229)
Browse files Browse the repository at this point in the history
* change emoji in CLI

* add changeset

Co-authored-by: Tim Leslie <[email protected]>
  • Loading branch information
raveling and timleslie committed Mar 30, 2021
1 parent b0040a6 commit fe4b489
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/seven-seals-repair.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@keystone-next/keystone': patch
---

Updated command line output emojis to be more friendly
2 changes: 1 addition & 1 deletion packages-next/keystone/src/scripts/build/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const reexportKeystoneConfig = async (projectAdminPath: string, isDisabled?: boo
};

export async function build({ dotKeystonePath, projectAdminPath }: StaticPaths) {
console.log('🤞 Building Keystone');
console.log(' Building Keystone');

const config = initConfig(requireSource(CONFIG_PATH).default);

Expand Down
2 changes: 1 addition & 1 deletion packages-next/keystone/src/scripts/run/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const devLoadingHTMLFilepath = path.join(
);

export const dev = async ({ dotKeystonePath, projectAdminPath }: StaticPaths) => {
console.log('🤞 Starting Keystone');
console.log(' Starting Keystone');

const server = express();
let expressServer: null | ReturnType<typeof express> = null;
Expand Down
2 changes: 1 addition & 1 deletion packages-next/keystone/src/scripts/run/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { createExpressServer } from '../../lib/createExpressServer';
import type { StaticPaths } from '..';

export const start = async ({ dotKeystonePath, projectAdminPath }: StaticPaths) => {
console.log('🤞 Starting Keystone');
console.log(' Starting Keystone');

// This is the compiled version of the configuration which was generated during the build step.
// See reexportKeystoneConfig().
Expand Down

1 comment on commit fe4b489

@vercel
Copy link

@vercel vercel bot commented on fe4b489 Mar 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.