mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
30 lines
961 B
JavaScript
30 lines
961 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
"use strict";
|
|
|
|
const { Ci, ChromeWorker } = require("chrome");
|
|
const Services = require("Services");
|
|
|
|
function watchFiles(path, onFileChanged) {
|
|
const watchWorker = new ChromeWorker(
|
|
"resource://devtools/client/shared/file-watcher-worker.js"
|
|
);
|
|
|
|
watchWorker.onmessage = event => {
|
|
// We need to turn a local path back into a resource URI (or
|
|
// chrome). This means that this system will only work when built
|
|
// files are symlinked, so that these URIs actually read from
|
|
// local sources. There might be a better way to do this.
|
|
const { path } = event.data;
|
|
onFileChanged(path);
|
|
};
|
|
|
|
watchWorker.postMessage({
|
|
path,
|
|
fileRegex: /\.(js|css|svg|png)$/
|
|
});
|
|
return watchWorker;
|
|
}
|
|
exports.watchFiles = watchFiles;
|