2 Commits

Author SHA1 Message Date
8c58df37d9 1.0.6 2022-04-26 17:03:15 +02:00
f0a4c0f7dc fix(core): update 2022-04-26 17:03:15 +02:00
4 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@pushrocks/commitinfo", "name": "@pushrocks/commitinfo",
"version": "1.0.5", "version": "1.0.6",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@pushrocks/commitinfo", "name": "@pushrocks/commitinfo",
"version": "1.0.5", "version": "1.0.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@pushrocks/projectinfo": "^5.0.1", "@pushrocks/projectinfo": "^5.0.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/commitinfo", "name": "@pushrocks/commitinfo",
"version": "1.0.5", "version": "1.0.6",
"private": false, "private": false,
"description": "bake commitinfos into code", "description": "bake commitinfos into code",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -1,5 +1,5 @@
/** /**
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const version = '1.0.4'; export const version: string = '1.0.6';

View File

@ -26,7 +26,7 @@ export class CommitInfo {
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const version: string = '${expectedDefinitiveVersion.versionString}'; export const version: string = '${expectedDefinitiveVersion.versionString}';
`, `,
writePath writePath
); );
} }