animate/webGl/my-threejs-test/node_modules/@parcel/runtime-react-refresh/lib/ReactRefreshRuntime.js

68 lines
2.4 KiB
JavaScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _plugin() {
const data = require("@parcel/plugin");
_plugin = function () {
return data;
};
return data;
}
function _utils() {
const data = require("@parcel/utils");
_utils = function () {
return data;
};
return data;
}
const CODE = `
var Refresh = require('react-refresh/runtime');
var ErrorOverlay = require('react-error-overlay');
Refresh.injectIntoGlobalHook(window);
window.$RefreshReg$ = function() {};
window.$RefreshSig$ = function() {
return function(type) {
return type;
};
};
ErrorOverlay.setEditorHandler(function editorHandler(errorLocation) {
let file = \`\${errorLocation.fileName}:\${errorLocation.lineNumber || 1}:\${errorLocation.colNumber || 1}\`;
fetch(\`/__parcel_launch_editor?file=\${encodeURIComponent(file)}\`);
});
ErrorOverlay.startReportingRuntimeErrors({
onError: function () {},
});
window.addEventListener('parcelhmraccept', () => {
ErrorOverlay.dismissRuntimeErrors();
});
`;
var _default = exports.default = new (_plugin().Runtime)({
async apply({
bundle,
options
}) {
if (bundle.type !== 'js' || !options.hmrOptions || !bundle.env.isBrowser() || bundle.env.isLibrary || bundle.env.isWorker() || bundle.env.isWorklet() || options.mode !== 'development' || bundle.env.sourceType !== 'module') {
return;
}
let entries = bundle.getEntryAssets();
for (let entry of entries) {
var _pkg$config, _pkg$config2, _pkg$config3;
// TODO: do this in loadConfig - but it doesn't have access to the bundle...
let pkg = await (0, _utils().loadConfig)(options.inputFS, entry.filePath, ['package.json'], options.projectRoot);
if (pkg !== null && pkg !== void 0 && (_pkg$config = pkg.config) !== null && _pkg$config !== void 0 && (_pkg$config = _pkg$config.dependencies) !== null && _pkg$config !== void 0 && _pkg$config.react || pkg !== null && pkg !== void 0 && (_pkg$config2 = pkg.config) !== null && _pkg$config2 !== void 0 && (_pkg$config2 = _pkg$config2.devDependencies) !== null && _pkg$config2 !== void 0 && _pkg$config2.react || pkg !== null && pkg !== void 0 && (_pkg$config3 = pkg.config) !== null && _pkg$config3 !== void 0 && (_pkg$config3 = _pkg$config3.peerDependencies) !== null && _pkg$config3 !== void 0 && _pkg$config3.react) {
return {
filePath: __filename,
code: CODE,
isEntry: true
};
}
}
}
});