gpt4 book ai didi

haskell - 摇一摇: how to proceed when file name is not known a-priori

转载 作者:行者123 更新时间:2023-12-02 21:13:52 26 4
gpt4 key购买 nike

我正在尝试设置Shake用于构建 Web 应用程序。在构建过程结束时,我想重命名生成的 .js.css根据内容哈希文件(用于缓存清除目的)。

这当然意味着我不知道这些文件的最终名称,类似于 app-<hash>.min.js .

自构建最终规则index.html需要知道关于名称,我需要类似的东西

"index.html" %> \out -> do
need [ "app-<hash>.min.js" ]
...

我尝试过使用phony采取行动

"index.html" %> \out -> do
need [ "revJsAndCssFiles" ]
...

phony "revJsAndCssFiles" $ do
... -- Hash and copy files to appropriate locations

这可行,但看起来很丑,因为 phony行动不应该生成一个文件。

解决这个问题的最佳方法是什么?

最佳答案

index.html 是否需要引用散列的 Javascript 文件?如果是这样,一种方法是:

"hash-js.txt" %> \out -> do
src <- readFile' "app.min.js"
let file = "app-" ++ show (hash src) ++ ".min.js"
writeFile' file src
writeFile' out file

"index.html" %> \out ->
js <- readFile' "hash-js.txt"
writeFile' out $ "<script src='" ++ js ++ ">"

这里有一个不断命名的规则(hash-js.txt),它既生成您想要的文件(位于未知位置),又生成该文件的名称(位于固定位置) 。这样,当您需要 index.html 中的文件时,您都依赖它并获取结果文件名,这可能是必需的。

如果您不需要 index.html 中的文件名,那么这个技巧同样有效 - 那么您只需丢弃文件的内容 - 但感觉有点难看。

关于haskell - 摇一摇: how to proceed when file name is not known a-priori,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36576654/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com