Skip to content

Commit 339550a

Browse files
Merge pull request #57 from HarishGangula/release-5.2.0
issue KN-954 fix: Updated the output concat each file with new line
2 parents ae70251 + 4e3e7e6 commit 339550a

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

js/buildSDK.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ var concatFile = () => {
3232
var outputStream = fs.createWriteStream(path.join(__dirname, '/dist/index.js'));
3333
filesData.forEach(fileData => {
3434
outputStream.write(fileData);
35+
outputStream.write("\r\n");
3536
})
3637
outputStream.end();
3738
}).catch(error => {

js/dist/index.js

Lines changed: 12 additions & 5 deletions
Large diffs are not rendered by default.

js/dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@project-sunbird/telemetry-sdk",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Telemetry Service javascript library helps to generate the telemetry events.",
55
"directories": {
66
"example": "example",

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@project-sunbird/telemetry-sdk",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Telemetry Service javascript library helps to generate the telemetry events.",
55
"directories": {
66
"example": "example",

0 commit comments

Comments
 (0)