added publish command to ui-scripts

This commit is contained in:
Sebastian Sdorra
2019-10-16 08:08:37 +02:00
parent 70d90750ba
commit 839b966747
8 changed files with 93 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
const createSnapshotVersion = (baseVersion) => {
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth().toString().padStart(2, "0");
const day = date.getDate().toString().padStart(2, "0");
const hours = date.getHours().toString().padStart(2, "0");
const minutes = date.getMinutes().toString().padStart(2, "0");
const seconds = date.getSeconds().toString().padStart(2, "0");
return `${year}${month}${day}-${hours}${minutes}${seconds}`;
};
module.exports = {
createSnapshotVersion
};