Skip to content

Commit

Permalink
Merge pull request #2 from dapplooker/env-support-requested-changes
Browse files Browse the repository at this point in the history
Env support requested changes
  • Loading branch information
hitesh23k authored Apr 16, 2024
2 parents 45dca92 + 5c4c5cd commit 917f5ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.5.3] - 2024-04-13
### Added
- support env & env commands (#2345)

## [4.5.2] - 2024-04-12
### Fixed
- Deployments failing with `this.jsonEnabled is not a function` (#2351)
Expand Down Expand Up @@ -560,7 +564,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- support subcommand codegen
- support subcommand init

[Unreleased]: https://github.com/subquery/subql/compare/cli/4.5.2...HEAD
[Unreleased]: https://github.com/dapplooker/subql/compare/v4.5.3...HEAD
[4.5.3]: https://github.com/dapplooker/subql/compare/v4.5.2...v4.5.3
[4.5.2]: https://github.com/subquery/subql/compare/cli/4.5.1...cli/4.5.2
[4.5.1]: https://github.com/subquery/subql/compare/cli/4.5.0...cli/4.5.1
[4.5.0]: https://github.com/subquery/subql/compare/cli/4.4.1...cli/4.5.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/controller/init-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export async function prepare(projectPath: string, project: ProjectSpecBase): Pr
try {
await prepareEnv(projectPath, project);
} catch (e) {
throw new Error('Failed to prepare read or wrte .env file hile preparing the project');
throw new Error('Failed to prepare read or write .env file while preparing the project');
}
try {
await prepareManifest(projectPath, project);
Expand Down

0 comments on commit 917f5ce

Please sign in to comment.