UNPKG

chrome-devtools-frontend

Version:
46 lines (36 loc) 1.28 kB
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // @ts-check const os = require('os'); const path = require('path'); const devtools_paths = require('../devtools_paths.js'); const devtools_plugin = require('./devtools_plugin.js'); // esbuild module uses binary in this path. const binaryName = os.type() === 'Windows_NT' ? 'esbuild.exe' : 'esbuild'; process.env.ESBUILD_BINARY_PATH = path.join(devtools_paths.devtoolsRootPath(), 'third_party', 'esbuild', binaryName); const entryPoints = [process.argv[2]]; const outfile = process.argv[3]; const useSourceMaps = process.argv.slice(4).includes('--configSourcemaps'); const outdir = path.dirname(outfile); const plugin = { name: 'devtools-plugin', setup(build) { // https://esbuild.github.io/plugins/#on-resolve build.onResolve({filter: /.*/}, devtools_plugin.esbuildPlugin(outdir)); }, }; require('esbuild') .build({ entryPoints, outfile, bundle: true, format: 'esm', platform: 'browser', plugins: [plugin], sourcemap: useSourceMaps, }) .catch(err => { console.error('failed to run esbuild:', err); process.exit(1); });