mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-29 14:56:36 +03:00
34 lines
680 B
JavaScript
34 lines
680 B
JavaScript
|
#!/usr/bin/node
|
||
|
|
||
|
const fs = require("fs");
|
||
|
|
||
|
const currentCompatibilityKey = 1;
|
||
|
|
||
|
fs.writeFileSync(
|
||
|
"src/Pages/Internal/Platform/CompatibilityKey.elm",
|
||
|
`module Pages.Internal.Platform.CompatibilityKey exposing (currentCompatibilityKey)
|
||
|
|
||
|
|
||
|
currentCompatibilityKey : Int
|
||
|
currentCompatibilityKey =
|
||
|
${currentCompatibilityKey}
|
||
|
`
|
||
|
);
|
||
|
|
||
|
fs.writeFileSync(
|
||
|
"generator/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}.`
|
||
|
)
|
||
|
);
|