@buildmotion/logging

The latest version v5.0.x is using the Angular 5.x packages.

Usage no npm install needed!

<script type="module">
  import buildmotionLogging from 'https://cdn.skypack.dev/@buildmotion/logging';
</script>

README

buildmotion-logging

The latest version v5.0.x is using the Angular 5.x packages.

"devDependencies": {
    "@angular/cli": "^1.5.0",
    "@angular/compiler": "^5.0.1",
    "@angular/compiler-cli": "^5.0.1",
    "@angular/core": "^5.0.1",
    "rollup": "^0.50.0",
    "tslint": "4.5.1",
    "typescript": "^2.4.2",
    "uglify-js": "^3.1.10"
  }

NgModule Decorators

The build process is not adding the specified decorator. Added manually for now...

import { NgModule, ModuleWithProviders, NO_ERRORS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { BuildMotionLoggingServiceConfig } from './logging.service.config';
import { BuildMotionLoggingService } from './logging.service';
var BuildMotionLoggingModule = /** @class */ (function () {
    function BuildMotionLoggingModule() {
    }
    BuildMotionLoggingModule.decorators = [
        { type: NgModule, args: [{
                    imports: [
                        CommonModule
                    ],
                    declarations: [],
                    exports: [],
                    schemas: [NO_ERRORS_SCHEMA],
                },] },
    ];
    return BuildMotionLoggingModule;
}());
export { BuildMotionLoggingModule };
//# sourceMappingURL=buildmotion-logging.module.js.map