fix(core): update
This commit is contained in:
parent
51438acdd2
commit
c2e032bbf4
26
readme.md
Normal file
26
readme.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# @pushrocks/smartlog-source-ora
|
||||||
|
a smartlog source wrapping ora for local display
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartlog-source-ora)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartlog-source-ora)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartlog-source-ora)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartlog-source-ora/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
[](https://gitlab.com/pushrocks/smartlog-source-ora/commits/master)
|
||||||
|
[](https://gitlab.com/pushrocks/smartlog-source-ora/commits/master)
|
||||||
|
[](https://www.npmjs.com/package/@pushrocks/smartlog-source-ora)
|
||||||
|
[](https://snyk.io/test/npm/@pushrocks/smartlog-source-ora)
|
||||||
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[](https://prettier.io/)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||||
|
|
||||||
|
[](https://maintainedby.lossless.com)
|
@ -3,12 +3,12 @@ import * as smartlogSourceOra from '../ts/index';
|
|||||||
|
|
||||||
let smartOra: smartlogSourceOra.SmartlogSourceOra;
|
let smartOra: smartlogSourceOra.SmartlogSourceOra;
|
||||||
|
|
||||||
tap.test('should create an ora instance', async (tools) => {
|
tap.test('should create an ora instance', async tools => {
|
||||||
smartOra = new smartlogSourceOra.SmartlogSourceOra();
|
smartOra = new smartlogSourceOra.SmartlogSourceOra();
|
||||||
expect(smartOra).to.be.instanceOf(smartlogSourceOra.SmartlogSourceOra);
|
expect(smartOra).to.be.instanceOf(smartlogSourceOra.SmartlogSourceOra);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should start', async (tools) => {
|
tap.test('should start', async tools => {
|
||||||
smartOra.text('getting started...');
|
smartOra.text('getting started...');
|
||||||
await tools.delayFor(2000);
|
await tools.delayFor(2000);
|
||||||
smartOra.finishSuccess();
|
smartOra.finishSuccess();
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
// pushrocks scope
|
// pushrocks scope
|
||||||
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
|
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
|
||||||
|
|
||||||
export {
|
export { smartlogInterfaces };
|
||||||
smartlogInterfaces
|
|
||||||
};
|
|
||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import ora from 'ora';
|
import ora from 'ora';
|
||||||
|
|
||||||
export {
|
export { ora };
|
||||||
ora
|
|
||||||
};
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user