noredink-ui/Shakefile.hs

179 lines
7.8 KiB
Haskell
Raw Normal View History

2020-10-28 01:29:44 +03:00
import Development.Shake
import Development.Shake.Command
import Development.Shake.FilePath
import Development.Shake.Util
import qualified GHC.IO.Encoding
import qualified System.IO
2020-10-28 01:29:44 +03:00
main :: IO ()
main = do
-- Work around `hGetContents: invalid argument (invalid byte sequence)` bug on
-- Nix: https://github.com/dhall-lang/dhall-haskell/issues/865
GHC.IO.Encoding.setLocaleEncoding System.IO.utf8
2020-10-29 06:34:44 +03:00
shakeArgs
shakeOptions
{ shakeFiles = "_build",
shakeThreads = 0,
shakeChange = ChangeModtimeAndDigest,
-- we ignore a lot of generated/downloaded dependency files so
-- that the output of `shake --lint-fsatrace` is usable. There
-- are probably a few untracked dependencies due to these ignores
-- (in particular relying on scripts in `node_modules`) but the
-- additional benefits are marginal compared to the effort required
-- to get everything 100% buttoned down. Long term, it'd be better to
-- move node dependencies into nix (either by using proper packages
-- where available or npm2nix where not.)
2020-10-29 07:46:36 +03:00
shakeLintIgnore =
[ "node_modules/**/*",
"elm-stuff/**/*",
"styleguide-app/elm-stuff/**/*"
]
2020-10-29 06:34:44 +03:00
}
$ do
2020-12-04 05:39:45 +03:00
want ["test"]
2020-10-29 07:51:48 +03:00
-- phonies. These provide a nice public API for using shake (`shake
-- clean`, `shake test`, etc.)
phony "clean" $ do
removeFilesAfter "elm-stuff" ["//*"]
removeFilesAfter "log" ["//*"]
removeFilesAfter "node_modules" ["//*"]
removeFilesAfter "public" ["//*"]
removeFilesAfter "styleguide-app" ["elm.js", "bundle.js", "elm-stuff"]
2020-10-29 08:02:20 +03:00
phony "public" $ need ["log/public.txt"]
2020-10-29 07:58:47 +03:00
phony "test" $ do
need
[ "log/npm-install.txt",
"tests/elm-verify-examples.json",
"log/elm-verify-examples.txt",
"log/elm-test.txt",
2022-03-15 20:29:20 +03:00
"log/elm-review.txt",
"log/elm-review-styleguide.txt",
2020-10-29 07:58:47 +03:00
"log/axe-report.txt",
"log/percy-tests.txt",
2020-11-22 15:01:35 +03:00
"log/forbidden-imports-report.txt",
"log/check-exposed.txt",
"log/format.txt",
"log/documentation.json"
2020-10-29 07:58:47 +03:00
]
phony "ci" $ do need ["test", "public"]
2020-10-29 06:34:44 +03:00
-- things that should be kept under version control
"tests/elm-verify-examples.json" %> \out -> do
need ["elm.json"]
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "jq" "--indent" "4" ["{ root: \"../src\", tests: .[\"exposed-modules\"] }"] "elm.json"
2020-10-29 06:34:44 +03:00
"deprecated-modules.csv" %> \out -> do
need ["elm.json", "script/deprecated-modules-csv.py"]
cmd (WithStdout True) (FileStdout out) "script/deprecated-modules-csv.py"
2020-11-22 15:01:35 +03:00
"forbidden-imports.toml" %> \out -> do
-- we always want to consume our own published deprecated modules list
-- so that we're not presenting outdated stuff in the styleguide! This
-- file can change separately from the CSV, but should always have at
-- least the deprecated modules in it.
need ["deprecated-modules.csv"]
cmd "elm-forbid-import" "forbid-from-csv" "deprecated-modules.csv"
2020-10-29 07:13:24 +03:00
2020-10-29 06:34:44 +03:00
-- temporary files, used to produce CI reports
2020-10-29 07:58:47 +03:00
"log/elm-test.txt" %> \out -> do
elmFiles <- getDirectoryFiles "." ["tests/**/*.elm"]
-- I'm not sure why elm-test needs package.json, but fsatracing it
-- reveals the dep, so in it goes!
need (["package.json", "elm.json"] ++ elmFiles)
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "elm-test"
2020-10-29 07:58:47 +03:00
2022-03-15 20:29:20 +03:00
"log/elm-review.txt" %> \out -> do
elmFiles <- getDirectoryFiles "." ["src/**/*.elm", "tests/**/*.elm"]
2022-03-15 20:29:20 +03:00
need (["package.json", "elm.json"] ++ elmFiles)
cmd (WithStdout True) (FileStdout out) "elm-review"
"log/elm-review-styleguide.txt" %> \out -> do
elmFiles <- getDirectoryFiles "." ["styleguide-app/**/*.elm"]
need (["package.json", "elm.json", "styleguide-app/elm.json"] ++ elmFiles)
cmd (Cwd "styleguide-app") (WithStdout True) (FileStdout out) "elm-review"
2020-10-29 07:58:47 +03:00
"log/elm-verify-examples.txt" %> \out -> do
elmFiles <- getDirectoryFiles "." ["src/**/*.elm"]
need (["tests/elm-verify-examples.json"] ++ elmFiles)
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "elm-verify-examples"
2020-10-29 07:58:47 +03:00
2020-10-29 06:34:44 +03:00
"log/format.txt" %> \out -> do
let placesToLook = ["src", "tests", "styleguide-app"]
elmFiles <- getDirectoryFiles "." (map (\place -> place </> "**" </> "*.elm") placesToLook)
need elmFiles
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "elm-format" "--validate" placesToLook
2020-10-29 06:34:44 +03:00
"log/percy-tests.txt" %> \out -> do
percyToken <- getEnv "PERCY_TOKEN"
case percyToken of
Nothing -> do
writeFileChanged out "Skipped running Percy tests, PERCY_TOKEN not set."
2020-10-29 06:34:44 +03:00
Just _ -> do
2022-01-22 02:40:27 +03:00
need ["log/npm-install.txt", "log/public.txt"]
2022-01-22 03:49:18 +03:00
cmd (WithStdout True) (FileStdout out) "script/percy-tests.sh"
2020-10-29 06:34:44 +03:00
"log/axe-report.json" %> \out -> do
need ["log/npm-install.txt", "script/run-axe.sh", "script/axe-puppeteer.js", "log/public.txt"]
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "script/run-axe.sh"
2020-10-29 06:34:44 +03:00
"log/axe-report.txt" %> \out -> do
need ["log/axe-report.json", "script/format-axe-report.sh", "script/axe-report.jq"]
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "script/format-axe-report.sh" "log/axe-report.json"
2020-10-29 06:34:44 +03:00
2020-11-22 15:01:35 +03:00
"log/forbidden-imports-report.txt" %> \out -> do
need ["forbidden-imports.toml"]
2020-10-29 07:11:06 +03:00
elmFiles <- getDirectoryFiles "." ["src/**/*.elm", "tests/**/*.elm"]
2020-11-22 15:01:35 +03:00
need (["forbidden-imports.toml"] ++ elmFiles)
cmd (WithStdout True) (FileStdout out) "elm-forbid-import" "check"
2020-10-29 07:11:06 +03:00
2020-10-29 07:12:26 +03:00
"log/check-exposed.txt" %> \out -> do
elmFiles <- getDirectoryFiles "." ["src/**/*.elm"]
need (["elm.json", "script/check-exposed.py"] ++ elmFiles)
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) "script/check-exposed.py"
2020-10-29 07:12:26 +03:00
2020-10-29 07:32:28 +03:00
"log/documentation.json" %> \out -> do
elmFiles <- getDirectoryFiles "." ["src/**/*.elm"]
need elmFiles
cmd_ "elm" "make" "--docs" out
2020-10-29 07:49:57 +03:00
"public/bundle.js" %> \out -> do
2020-10-29 07:35:50 +03:00
libJsFiles <- getDirectoryFiles "." ["lib/**/*.js"]
need (["package.json", "lib/index.js", "styleguide-app/manifest.js", "log/npm-install.txt"] ++ libJsFiles)
cmd_ "./node_modules/.bin/browserify" "--entry" "styleguide-app/manifest.js" "--outfile" out
2020-10-29 07:49:57 +03:00
"public/elm.js" %> \out -> do
2020-10-29 07:46:36 +03:00
elmSources <- getDirectoryFiles "." ["styleguide-app/**/*.elm", "src/**/*.elm"]
need elmSources
cmd_ (Cwd "styleguide-app") "elm" "make" "Main.elm" "--output" (".." </> out)
2022-03-29 00:34:52 +03:00
"public/package.json" %> \out -> do
copyFileChanged "elm.json" out
"public/application.json" %> \out -> do
copyFileChanged "styleguide-app/elm.json" out
2020-10-29 07:49:57 +03:00
"public/**/*" %> \out ->
copyFileChanged (replaceDirectory1 out "styleguide-app") out
"log/public.txt" %> \out -> do
styleguideAssets <- getDirectoryFiles ("styleguide-app" </> "assets") ["**/*"]
need
2022-03-29 00:34:52 +03:00
( ["public/index.html", "public/elm.js", "public/bundle.js", "public/package.json", "public/application.json"]
2020-10-29 07:49:57 +03:00
++ map (("public" </> "assets") </>) styleguideAssets
)
writeFileChanged out "built styleguide app successfully"
2020-10-29 07:49:57 +03:00
2020-10-29 06:34:44 +03:00
-- dev deps we get dynamically instead of from Nix (frowny face)
"log/npm-install.txt" %> \out -> do
2020-10-29 07:10:55 +03:00
-- npm looks in some unrelated files for whatever reason. We mark
-- them as used here to avoid getting linter errors.
gitHeads <- getDirectoryFiles "." [".git/refs/heads/*"]
2020-10-31 00:24:26 +03:00
trackRead (["README.md", ".git/HEAD"] ++ gitHeads)
2020-10-29 07:10:55 +03:00
-- now that we've satisfied the linter, let's build.
2020-10-29 06:34:44 +03:00
need ["package.json", "package-lock.json"]
2020-10-30 18:32:07 +03:00
cmd (WithStdout True) (FileStdout out) (FileStderr out) "npm" "install"