Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const config = {
description: `
Initialize a new Prismic project by creating a repository and
prismic.config.json file. Detects the project framework, installs
dependencies, and syncs models from Prismic.
dependencies, and pulls models from Prismic.

Use --repo to connect to an existing repository instead. If a
slicemachine.config.json exists, its repository and settings will be
Expand Down Expand Up @@ -200,5 +200,5 @@ export default createCommand(config, async ({ values }) => {

console.info(`\nInitialized Prismic for repository "${repo}".`);
console.info("Run `prismic type create <name>` to create a content type.");
console.info("Run `prismic sync` to sync models from Prismic.");
console.info("Run `prismic pull` to pull models from Prismic.");
Comment thread
angeloashmore marked this conversation as resolved.
});
Loading