mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-22 21:51:25 +03:00
34 lines
684 B
JavaScript
Executable File
34 lines
684 B
JavaScript
Executable File
#!/usr/bin/node
|
|
|
|
const fs = require("fs");
|
|
|
|
const currentCompatibilityKey = 4;
|
|
|
|
fs.writeFileSync(
|
|
"src/Pages/Internal/Platform/CompatibilityKey.elm",
|
|
`module Pages.Internal.Platform.CompatibilityKey exposing (currentCompatibilityKey)
|
|
|
|
|
|
currentCompatibilityKey : Int
|
|
currentCompatibilityKey =
|
|
${currentCompatibilityKey}
|
|
`
|
|
);
|
|
|
|
fs.writeFileSync(
|
|
"generator/src/compatibility-key.js",
|
|
`module.exports = { compatibilityKey: ${currentCompatibilityKey} };
|
|
`
|
|
);
|
|
|
|
fs.writeFileSync(
|
|
"./README.md",
|
|
fs
|
|
.readFileSync("./README.md")
|
|
.toString()
|
|
.replace(
|
|
/Current Compatibility Key: \d+\./,
|
|
`Current Compatibility Key: ${currentCompatibilityKey}.`
|
|
)
|
|
);
|