fix(core): update

This commit is contained in:
Philipp Kunz 2018-11-02 09:07:47 +01:00
parent ca5e5bb65a
commit 6080835477
5 changed files with 30 additions and 8 deletions

9
package-lock.json generated
View File

@ -74,6 +74,15 @@
"@pushrocks/smartpromise": "^2.0.5"
}
},
"@pushrocks/qenv": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@pushrocks/qenv/-/qenv-2.0.2.tgz",
"integrity": "sha512-DKYbGy2m0fDRCVp9vwtgx1vZfYfK0k36POplCGo0jJat/DmB51KOjZ3gkqRqNJnoRQrn/kFH8+Xrm7D6gOotoA==",
"dev": true,
"requires": {
"@pushrocks/smartfile": "^6.0.6"
}
},
"@pushrocks/smartdelay": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@pushrocks/smartdelay/-/smartdelay-2.0.2.tgz",

View File

@ -15,6 +15,7 @@
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/qenv": "^2.0.2",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^10.11.7",
"tslint": "^5.11.0",

2
qenv.yml Normal file
View File

@ -0,0 +1,2 @@
vars:
-

View File

@ -1,8 +1,19 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as logdna from '../ts/index'
import * as logdna from '../ts/index';
tap.test('first test', async () => {
console.log(logdna.standardExport)
})
import { Qenv } from '@pushrocks/qenv';
tap.start()
const testQenv = new Qenv('./', './.nogit');
let testLogDnaAccount: logdna.LogdnaAccount;
let testLogMessage: logdna.LogdnaMessage;
tap.test('should create a valid logDna account', async () => {
testLogDnaAccount = new logdna.LogdnaAccount();
});
tap.test('should create a standard log message', async () => {
});
tap.start();

View File

@ -1,3 +1,2 @@
import * as plugins from './logdna.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export * from './logdna.logdnaaccount';
export * from './logdna.classes.logmessage';