尽管此问题与Workbox和Webpack有关,但它不需要任何一个库的任何先验知识。
我目前正在使用Workbox 4.3.1(workbox-webpack-plugin)中的InjectManifest
插件。该版本的库提供了一个名为manifestTransforms
的选项,但不幸的是,转换未应用于Webpack编译中的资产(这是known issue)。
虽然在Workbox v5 +中已修复此问题,但由于构建过程中需要库包v3(Dynamic Importing in Laravel Mix)的另一个库,我无法升级
我之所以提到上述原因,是因为不幸的是,解决方案不是升级到Workbox v5 +。
我有一个自动生成的文件,如下所示:
self.__precacheManifest = (self.__precacheManifest || []).concat([
{
"revision": "68cd3870a6400d76a16c",
"url": "//css/app.css"
},
// etc...
]);
我需要以某种方式提取存储在self.__precacheManifest
中的对象的内容,应用我自己的转换,然后将其保存回文件中。
据我所知:
// As the precached filename is hashed, we need to read the
// directory in order to find the filename. Assuming there
// are no other files called `precache-manifest`, we can assume
// it is the first value in the filtered array. There is no
// need to test if [0] has a value because if it doesn't
// this needs to throw an error
let manifest = fs
.readdirSync(path.normalize(`${__dirname}/dist/js`))
.filter(filename => filename.startsWith('precache-manifest'))[0];
require('./dist/js/' + manifest);
// This does not fire because of thrown error...
console.log(self.__precacheManifest);
这将引发以下错误:
我自己没有定义
我知道为什么会引发错误,但是我不知道如何解决此问题,因为我需要以某种方式读取文件的内容以提取对象。有人可以在这里给我建议吗?
请记住,一旦将转换应用于对象,则需要将更新的对象保存到文件中...
答案 0 :(得分:2)
由于self
指向window
,并且window
在node.js中不存在,因此需要一种解决方法。
应该起作用的一件事是在Node的全局范围内定义变量self
,并让require语句填充变量的内容,如下所示:
global['self'] = {};
require('./dist/js/' + manifest);
console.log(self.__precacheManifest);
要将修改后的内容保存回文件中
const newPrecacheManifest = JSON.stringify(updatedArray);
fs.writeFileSync('./dist/js/' + manifest, `self.__precacheManifest = (self.__precacheManifest || []).concat(${newPrecachedManifes});`, 'utf8');