New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More β†’
Socket
Sign inDemoInstall
Socket

@code-pushup/core

Package Overview
Dependencies
Maintainers
3
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@code-pushup/core - npm Package Compare versions

Comparing version 0.9.0 to 0.10.0

16

index.js

@@ -585,2 +585,14 @@ // packages/core/src/lib/implementation/persist.ts

}
function formatDate(date) {
const locale = "en-US";
return date.toLocaleString(locale, {
weekday: "short",
month: "short",
day: "numeric",
year: "numeric",
hour: "numeric",
minute: "2-digit",
timeZoneName: "short"
}).replace(/\u202F/g, " ");
}

@@ -1219,3 +1231,3 @@ // packages/utils/src/lib/guards.ts

function reportToAboutSection(report, commitData) {
const date = (/* @__PURE__ */ new Date()).toString();
const date = formatDate(/* @__PURE__ */ new Date());
const { duration, version: version2, plugins, categories } = report;

@@ -1673,3 +1685,3 @@ const commitInfo = commitData ? `${commitData.message} (${commitData.hash.slice(0, 7)})` : "N/A";

var name = "@code-pushup/core";
var version = "0.9.0";
var version = "0.10.0";

@@ -1676,0 +1688,0 @@ // packages/core/src/lib/implementation/collect.ts

2

package.json
{
"name": "@code-pushup/core",
"version": "0.9.0",
"version": "0.10.0",
"dependencies": {

@@ -5,0 +5,0 @@ "@code-pushup/models": "*",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc