Socket
Socket
Sign inDemoInstall

elm-pages

Package Overview
Dependencies
332
Maintainers
1
Versions
145
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0-beta.32 to 3.0.0-beta.33

4

generator/src/compatibility-key.js

@@ -1,3 +0,3 @@

export const compatibilityKey = 12;
export const compatibilityKey = 13;
export const packageVersion = "3.0.0-beta.32";
export const packageVersion = "3.0.0-beta.33";

@@ -94,2 +94,3 @@ // @ts-check

} catch (error) {
process.exitCode = 1;
console.log(restoreColorSafe(error));

@@ -96,0 +97,0 @@ }

@@ -205,8 +205,22 @@ import * as path from "path";

} catch (error) {
console.trace("@@@ request-cache2 HTTP error", error);
reject({
title: "BackendTask.Http Error",
message: `${kleur.yellow().underline(request.url)} ${error.toString()}
`,
});
if (error.code === "ECONNREFUSED") {
resolve({
kind: "response-json",
value: { "elm-pages-internal-error": "NetworkError" },
});
} else if (
error.code === "ETIMEDOUT" ||
error.code === "ERR_SOCKET_TIMEOUT"
) {
resolve({
kind: "response-json",
value: { "elm-pages-internal-error": "Timeout" },
});
} else {
console.trace("elm-pages unhandled HTTP error", error);
resolve({
kind: "response-json",
value: { "elm-pages-internal-error": "NetworkError" },
});
}
}

@@ -213,0 +227,0 @@ }

{
"name": "elm-pages",
"type": "module",
"version": "3.0.0-beta.32",
"version": "3.0.0-beta.33",
"homepage": "https://elm-pages.com",

@@ -6,0 +6,0 @@ "moduleResolution": "node",

@@ -84,3 +84,3 @@ # `elm-pages` [![Netlify Status](https://api.netlify.com/api/v1/badges/8ee4a674-4f37-4f16-b99e-607c0a02ee75/deploy-status)](https://app.netlify.com/sites/elm-pages/deploys) [![Build Status](https://github.com/dillonkearns/elm-pages/workflows/Elm%20CI/badge.svg)](https://github.com/dillonkearns/elm-pages/actions?query=branch%3Amaster) [![npm](https://img.shields.io/npm/v/elm-pages.svg)](https://npmjs.com/package/elm-pages) [![Elm package](https://img.shields.io/elm-package/v/dillonkearns/elm-pages.svg)](https://package.elm-lang.org/packages/dillonkearns/elm-pages/latest/)

Current Compatibility Key: 12.
Current Compatibility Key: 13.

@@ -87,0 +87,0 @@ ## Contributors ✨

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc