Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amay077 committed Mar 3, 2023
1 parent 5224780 commit 4648f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/prebuild.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Mustache = require('mustache');
const fs = require('fs');
const path = require('path');
const dayjs = require('dayjs');

function rp(files, releaseDate) {
console.log(`${this.constructor.name}: rp -> files, releaseDate`, files, releaseDate);
Expand All @@ -24,7 +24,7 @@ function rp(files, releaseDate) {

console.log('#### START PREBUILD ####');

var releaseDate = new Date().toISOString();
const releaseDate = dayjs().format('YYYYMMDDHHmm');
console.log(`release date - ${releaseDate}`);

rp([
Expand Down

0 comments on commit 4648f40

Please sign in to comment.