g-ui-web 1.4.49 → 1.4.50
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/lib/plugins/index.cjs +1 -1
- package/lib/plugins/index.mjs +1 -1
- package/package.json +1 -1
package/lib/plugins/index.cjs
CHANGED
|
@@ -192,7 +192,7 @@ function componentUsagePlugin(options = {}) {
|
|
|
192
192
|
hasReported = true;
|
|
193
193
|
const reportData = {
|
|
194
194
|
libraryName,
|
|
195
|
-
timestamp: (
|
|
195
|
+
timestamp: new Date(Date.now() + 8 * 36e5).toISOString().replace("Z", "+08:00"),
|
|
196
196
|
summary: {
|
|
197
197
|
totalImports: importStats.totalImports,
|
|
198
198
|
uniqueComponents: importStats.componentCount.size,
|
package/lib/plugins/index.mjs
CHANGED
|
@@ -166,7 +166,7 @@ function componentUsagePlugin(options = {}) {
|
|
|
166
166
|
hasReported = true;
|
|
167
167
|
const reportData = {
|
|
168
168
|
libraryName,
|
|
169
|
-
timestamp: (
|
|
169
|
+
timestamp: new Date(Date.now() + 8 * 36e5).toISOString().replace("Z", "+08:00"),
|
|
170
170
|
summary: {
|
|
171
171
|
totalImports: importStats.totalImports,
|
|
172
172
|
uniqueComponents: importStats.componentCount.size,
|