Skip to content

Commit

Permalink
Expose init publically
Browse files Browse the repository at this point in the history
Fix bumpver clobbering
  • Loading branch information
joshgarde committed Aug 7, 2023
1 parent dfa5881 commit bbe35ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ push = true
'"version": "{version}"'
]
"package-lock.json" = [
'"version": "{version}"'
'^ "version": "{version}",$'
]
"bumpver.toml" = [
'current_version = "{version}"',
Expand Down
3 changes: 1 addition & 2 deletions lib/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ export default class Utilities {
*/
constructor(appName, serviceName) {
this.#ssmPath = `/service/${appName}/${serviceName}/`;
this.#init();
}

/**
* Initializes the Utilities class's required services
*/
async #init() {
async init() {
await this.#loadSSMParameters();
await this.#setupDatabase();
await this.#preloadSchemas();
Expand Down

0 comments on commit bbe35ac

Please sign in to comment.