Bump NPM package.

This commit is contained in:
Dillon Kearns 2023-02-07 10:28:36 -08:00
parent da53f96723
commit a9f431f4af
4 changed files with 5 additions and 5 deletions

View File

@ -81,7 +81,7 @@ https://github.com/dillonkearns/elm-pages/projects
You will see an error if the NPM and Elm package do not have a matching Compatibility Key. Usually it's best to upgrade to the latest version of both the Elm and NPM
packages when you upgrade. However, in case you want to install versions that are behind the latest, the Compatibility Key is included here for reference.
Current Compatibility Key: 6.
Current Compatibility Key: 7.
## Contributors ✨

View File

@ -1,3 +1,3 @@
export const compatibilityKey = 6;
export const compatibilityKey = 7;
export const packageVersion = "3.0.0-beta.20";
export const packageVersion = "3.0.0-beta.21";

View File

@ -3,4 +3,4 @@ module Pages.Internal.Platform.CompatibilityKey exposing (currentCompatibilityKe
currentCompatibilityKey : Int
currentCompatibilityKey =
6
7

View File

@ -2,7 +2,7 @@
import * as fs from "node:fs";
const currentCompatibilityKey = 6;
const currentCompatibilityKey = 7;
const currentPackageVersion = JSON.parse(
fs.readFileSync("./package.json")
).version;