Compare commits

..

4 Commits

Author SHA1 Message Date
e0983911d4 1.0.4 2018-12-28 00:19:37 +01:00
203243646b fix(core): update 2018-12-28 00:19:37 +01:00
faabcabdda 1.0.3 2018-12-28 00:07:48 +01:00
9233ebd965 fix(core): update 2018-12-28 00:07:48 +01:00
4 changed files with 6 additions and 6 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/weblogo",
"version": "1.0.2",
"version": "1.0.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/weblogo",
"version": "1.0.2",
"version": "1.0.4",
"private": false,
"description": "an adaptable representation for a logo of a website, covering favicon, to main banner logo",
"main": "dist/index.js",

View File

@ -1,8 +1,8 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as weblogo from '../ts/index'
import * as weblogo from '../ts/index';
tap.test('first test', async () => {
console.log(weblogo.standardExport)
})
tap.start()
tap.start();

View File

@ -15,6 +15,6 @@ export class WebLogo implements IWebLogo {
svgSquared: string;
favIcon: string;
constructor(baseUrl: string) {
}
}