source: trip-planner-front/node_modules/@angular-devkit/build-angular/src/webpack/plugins/hmr/hmr-loader.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 826 bytes
Line 
1"use strict";
2/**
3 * @license
4 * Copyright Google LLC All Rights Reserved.
5 *
6 * Use of this source code is governed by an MIT-style license that can be
7 * found in the LICENSE file at https://angular.io/license
8 */
9Object.defineProperty(exports, "__esModule", { value: true });
10exports.HmrLoader = void 0;
11const path_1 = require("path");
12exports.HmrLoader = __filename;
13const hmrAcceptPath = path_1.join(__dirname, './hmr-accept.js').replace(/\\/g, '/');
14function default_1(content,
15// Source map types are broken in the webpack type definitions
16// eslint-disable-next-line @typescript-eslint/no-explicit-any
17map) {
18 const source = `${content}
19
20 // HMR Accept Code
21 import ngHmrAccept from '${hmrAcceptPath}';
22 ngHmrAccept(module);
23 `;
24 this.callback(null, source, map);
25 return;
26}
27exports.default = default_1;
Note: See TracBrowser for help on using the repository browser.