6 Commits

Author SHA1 Message Date
38c233bf06 1.0.7 2022-04-27 14:15:12 +02:00
81f943f52a fix(core): update 2022-04-27 14:15:12 +02:00
8c58df37d9 1.0.6 2022-04-26 17:03:15 +02:00
f0a4c0f7dc fix(core): update 2022-04-26 17:03:15 +02:00
31cfaa69b9 1.0.5 2022-04-26 17:02:17 +02:00
0d539c34e8 fix(core): update 2022-04-26 17:02:16 +02:00
4 changed files with 8 additions and 7 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@pushrocks/commitinfo", "name": "@pushrocks/commitinfo",
"version": "1.0.4", "version": "1.0.7",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@pushrocks/commitinfo", "name": "@pushrocks/commitinfo",
"version": "1.0.4", "version": "1.0.7",
"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.4", "version": "1.0.7",
"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.7';
export default version;

View File

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