social-graphics-library
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -34,3 +34,7 @@ import Call from "./model/call"; | ||
static info(): object; | ||
/** | ||
* Version of social graphics library | ||
*/ | ||
static VERSION: string; | ||
} | ||
export default SocialGraphicsLibrary; |
@@ -26,2 +26,7 @@ export declare class Info { | ||
constructor(); | ||
/** | ||
* Gets version | ||
* @returns version | ||
*/ | ||
getVersion(): string; | ||
} |
{ | ||
"name": "social-graphics-library", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A script for generating social media logos and banners", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -215,4 +215,11 @@ import { False_Template } from "./template/false.template"; | ||
//#endregion | ||
//#region version | ||
/** | ||
* Version of social graphics library | ||
*/ | ||
public static VERSION: string = new Info().getVersion() | ||
//#endregion | ||
} | ||
export default SocialGraphicsLibrary; |
@@ -7,3 +7,3 @@ export class Info { | ||
*/ | ||
private readonly _version: string = "1.3.0" | ||
private readonly _version: string = "1.3.1" | ||
@@ -44,2 +44,12 @@ /** | ||
//#region get | ||
/** | ||
* Gets version | ||
* @returns version | ||
*/ | ||
public getVersion(): string { | ||
return this._version; | ||
} | ||
//#endregion | ||
} |
Sorry, the diff of this file is too big to display
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
5252886
1358
0