Gulp用另一个文件的哈希值更新文件的内容

时间:2019-01-11 21:13:29

标签: gulp

我正在为这项艰巨的任务而苦苦挣扎。我有一个文件需要修改后生成,该文件是使用Angular Service Worker的PWA软件包的一部分。修改的结果是,我需要重新计算哈希并更新alter table ypallhloi add constraint foreign key (arithmos_up) references grafeia(arithmos_g); alter table ekdromes add constraint foreign key (ae) references pwlhseis(ae_po); 文件中的条目,其内容如下所示。

ngsw.json

我知道需要哈希更新的文件名,并且具有此功能

 "hashTable": {
    "/1.a634d7bd57cc0b60b07a.js": "f67c68837f048be737dcb1359072fc40c1f93144",
    "/10.b18571adf198206cc401.js": "c59d8f124964b73456f22ed3a51efec0493ce7c5",
    "/100.625f7b4770945172db3e.js": "da62af393973a8eb002874406e8a1dd828faecaf",
    "/main.5be263c044e031156b6b.js": "5bfa4ec8a86ee2ab4a5f2f999b0742ac4a5ddbc7"
}

我对gulp不太熟悉,将不胜感激。

1 个答案:

答案 0 :(得分:1)

您可以编写一个插件来获取hashsum的结果,并只需使用fs来修改json。

这是一个幼稚的实现:

const fs = require('fs')
const path = require('path')
const through = require('through2')
const hashsum = require('gulp-hashsum')

const modifyJson = ({ fileName, src, property }) => through.obj((file, _, cb) => {
  const { name } = path.parse(file.path)
  if (name !== fileName) return cb(null, file)

  const pathToJson = path.resolve(__dirname, src)
  if (!fs.existsSync(pathToJson)) {
    return cb(new Error(`${src} doesn't exist.`), file)
  }
  const json = JSON.parse(fs.readFileSync(pathToJson, 'utf8'))

  const content = JSON.parse(file.contents)
  if (typeof json[property] === 'undefined') console.warn(`${src} doesn't has any property named '${property}' A new one will be created.`)
  json[property] = content
   fs.writeFileSync(pathToJson, JSON.stringify(json))

  return cb(null, file)
})

用法:

exports.modifyJson = () =>
  src(['app/**/*.js'])
  .pipe(hashsum({
    stream: true,
    json: true,
  }))
  .pipe(modifyJson({
    fileName: 'SHA1SUMS',
    src: './test.json',
    property: 'hashTable',
  }))

我在gist上有此代码。