Compare commits

..

No commits in common. "master" and "v1.0.2" have entirely different histories.

4 changed files with 6 additions and 6 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -1,8 +1,8 @@
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@pushrocks/tapbundle';
import * as weblogo from '../ts/index'; import * as weblogo from '../ts/index'
tap.test('first test', async () => { 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; svgSquared: string;
favIcon: string; favIcon: string;
constructor(baseUrl: string) { constructor(baseUrl: string) {
} }
} }