Skip to content

Commit a03d65b

Browse files
author
craigparra
committed
1.0.13 / 2021-08-12
================== * Fix Application async run - @craigparra
1 parent a5419d0 commit a03d65b

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

Application.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
const Boot = require('./Boot');
22

33
module.exports = class Application {
4-
static run(optionsArg) {
4+
static async run(optionsArg) {
55
const options = optionsArg;
66
if (!Boot.root('config')) {
77
Boot.boot(options);
88
}
99

10+
// eslint-disable-next-line global-require
1011
const ApplicationContext = require('@alt-javascript/cdi/ApplicationContext');
1112

1213
options.config = options?.config || Boot.root('config');

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.13 / 2021-08-12
2+
==================
3+
4+
* Fix Application async run - @craigparra
5+
16
1.0.12 / 2021-08-10
27
==================
38

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alt-javascript/boot",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"description": "An Extensible Config & Logging Application Bootstrap Function",
55
"author": "Craig Parravicini",
66
"keywords": [

0 commit comments

Comments
 (0)