@adonoustech/bacon-core 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonoustech/bacon-core",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
6
6
|
"build:es": "tsc -p tsconfig.es.json",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"bugs": {
|
|
37
37
|
"url": "https://github.com/AdonousTech/bacon-core/issues"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "aea65d1d29add1823f5355d38dbe8162966eef4f"
|
|
40
40
|
}
|
package/src/concrete/index.ts
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaconBaseLoggerEvent } from "../base/BaconBaseLoggerEvt";
|
|
2
|
+
import { BaconBaseLoggerEventFactory } from "../base/BaconBaseLoggerEvtFact";
|
|
3
|
+
import { BaconAccessLoggerEvent } from "../concrete/BaconAccessLoggerEvent";
|
|
4
|
+
|
|
5
|
+
export class BaconAccessLoggerEventFactory extends BaconBaseLoggerEventFactory {
|
|
6
|
+
|
|
7
|
+
static createLoggerEvent(): BaconBaseLoggerEvent {
|
|
8
|
+
const loggerEvent: BaconBaseLoggerEvent = new BaconAccessLoggerEvent();
|
|
9
|
+
return loggerEvent;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
}
|