Skip to content

Commit

Permalink
Update messages
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname committed Aug 8, 2024
1 parent 33127e3 commit ccb3a8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Support CLI selection for creating SubQuery and Subgraph projects.
### Changed
- Default deployment type to SubQuery when deploying to the managed service (#2523).

## [5.2.0] - 2024-08-05
### Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/commands/project/create-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export default class Create_project extends Command {

let {gitRepo, org, projectName} = flags;
assert(
['subquery', 'subgraph'].includes(flags.projectType),
'Invalid project type, Only support subQuery and subgraph'
['subquery'].includes(flags.projectType),
'Invalid project type, only "subquery" is supported. Please deploy Subgraphs through the website.'
);
const authToken = await checkToken();

Expand Down

0 comments on commit ccb3a8b

Please sign in to comment.