mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
28de9439be
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
40 lines
837 B
JavaScript
40 lines
837 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const concurrently = require("concurrently");
|
|
const rimraf = require("rimraf");
|
|
|
|
const args = process.argv.splice(2);
|
|
|
|
rimraf.sync("build");
|
|
|
|
concurrently(
|
|
[
|
|
{
|
|
name: "Main",
|
|
command: "npm run build:main:watch",
|
|
prefixColor: "yellow",
|
|
},
|
|
{
|
|
name: "Prel",
|
|
command: "npm run build:preload:watch",
|
|
prefixColor: "magenta",
|
|
},
|
|
{
|
|
name: "Rend",
|
|
command: "npm run build:renderer:watch",
|
|
prefixColor: "cyan",
|
|
},
|
|
{
|
|
name: "Elec",
|
|
command: `npx wait-on ./build/main.js && npx electron --inspect=5858 ${args.join(
|
|
" ",
|
|
)} ./build --watch`,
|
|
prefixColor: "green",
|
|
},
|
|
],
|
|
{
|
|
prefix: "name",
|
|
outputStream: process.stdout,
|
|
killOthers: ["success", "failure"],
|
|
},
|
|
);
|