@pittica/google-business-intelligence-helpers 1.12.0 → 1.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/naming/date.js +1 -1
- package/package.json +2 -2
package/dist/naming/date.js
CHANGED
|
@@ -88,7 +88,7 @@ exports.getDatesUntil = (until = new Date()) => {
|
|
|
88
88
|
const year = until.getFullYear();
|
|
89
89
|
let current = new Date(Date.UTC(year, 0, 1));
|
|
90
90
|
while (current <= until && current.getFullYear() === year) {
|
|
91
|
-
dates.push(formatDate(new Date(current)));
|
|
91
|
+
dates.push(this.formatDate(new Date(current)));
|
|
92
92
|
current.setDate(current.getDate() + 1);
|
|
93
93
|
}
|
|
94
94
|
return dates;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pittica/google-business-intelligence-helpers",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.2",
|
|
5
5
|
"description": "Helpers for business intelligence for Google Cloud.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/pittica/google-business-intelligence-helpers#README.md",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@pittica/google-cloud-storage-helpers": "^1.3.
|
|
29
|
+
"@pittica/google-cloud-storage-helpers": "^1.3.2",
|
|
30
30
|
"date-and-time": "^4.1.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|