We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aa4402 commit b0dfe9bCopy full SHA for b0dfe9b
2 files changed
index.js
@@ -42,14 +42,14 @@
42
43
if (tag)
44
{
45
- versionInfo += '\n\ttag: \'' + tag + '\'';
+ versionInfo += '\n\ttag: \'' + tag + '\',';
46
}
47
else
48
49
- versionInfo += '\n\ttag: null';
+ versionInfo += '\n\ttag: null,';
50
51
52
- versionInfo += '\n\thash: \'' + sha + '\'';
+ versionInfo += '\n\thash: \'' + sha + '\',';
53
versionInfo += '\n\ttimestamp: ' + Math.floor(new Date().getTime()/1000);
54
versionInfo += '\n};\n';
55
package.json
@@ -1,7 +1,7 @@
1
2
"name": "node-git-version",
3
"description": "Node.js application for creating version file of git repository",
4
- "version": "0.1.0",
+ "version": "0.1.1",
5
"main": "index.js",
6
"bin": "index.js",
7
"dependencies":
0 commit comments