Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

antares: init at 0.7.22 #299465

Merged
merged 1 commit into from Apr 17, 2024
Merged

antares: init at 0.7.22 #299465

merged 1 commit into from Apr 17, 2024

Conversation

hatch01
Copy link
Contributor

@hatch01 hatch01 commented Mar 27, 2024

Description of changes

Package Antares, an SQL client.

Things done

I package Antares.
It is an electron app using typescript and vue.
So nix has to compile the ts to JS.
However, I think my method is not perfect because in the end, the output directory has the .ts and the .js.
But only the .js are needed.
If anyone has an idea on how to do it cleaner, it will be helpful.

  • Built on platform(s)
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
    • sandbox = relaxed
    • sandbox = true
  • Tested, as applicable:
  • Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
  • Tested basic functionality of all binary files (usually in ./result/bin/)
  • 24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
    • (Package updates) Added a release notes entry if the change is major or breaking
    • (Module updates) Added a release notes entry if the change is significant
    • (Module addition) Added a release notes entry if adding a new NixOS module
  • Fits CONTRIBUTING.md.

Add a 👍 reaction to pull requests you find important.

pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
Copy link
Member

@AndersonTorres AndersonTorres left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Squash the commits according to the contributing guidelines.

@hatch01
Copy link
Contributor Author

hatch01 commented Mar 27, 2024

@AndersonTorres should I do something like find -name "*.ts" | xargs rm to clean up the typescript files that are not needed ?

@AndersonTorres
Copy link
Member

@AndersonTorres should I do something like find -name "*.ts" | xargs rm to clean up the typescript files that are not needed ?

Ideally you should do this right after compilation, since the idea is to not install these.

P.S.: use rm -f on this xargs command.

pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
@hatch01 hatch01 force-pushed the antares branch 2 times, most recently from a711d05 to de639cb Compare March 27, 2024 18:31
@hatch01
Copy link
Contributor Author

hatch01 commented Mar 27, 2024

@AndersonTorres overriding the InstallPhase breaks the app. So I reverted it.

@AndersonTorres
Copy link
Member

This is strange. The buildPhase is not meant to populate the installation dir.
What the buildPhase is doing?

Can you show the log?

pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
pkgs/by-name/an/antares/package.nix Outdated Show resolved Hide resolved
@hatch01 hatch01 force-pushed the antares branch 2 times, most recently from 91abd0d to 18c09f7 Compare March 28, 2024 07:43
@hatch01
Copy link
Contributor Author

hatch01 commented Mar 28, 2024

This is strange. The buildPhase is not meant to populate the installation dir. What the buildPhase is doing?

Can you show the log?

package.nix
{ fetchFromGitHub
, lib
, buildNpmPackage
, electron
, nodejs
}:

buildNpmPackage rec {
  pname = "antares";
  version = "0.7.22";

  src = fetchFromGitHub {
    owner = "antares-sql";
    repo = "antares";
    rev = "v${version}";
    hash = "sha256-SYnhrwxoyVw+bwfN1PGMsoul+mTfi8UkiP0fNOvVTBc=";
  };

  npmDepsHash = "sha256-5khFw8Igu2d5SYLh7OiCpUDMOVH5gAje+VnvoESQboo=";

  buildInputs = [ nodejs ];

  # Compile it since it uses Typescript
  buildPhase = ''
    runHook preBuild
    npm run compile
    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall
    find -name "*.ts" | xargs rm -f
    mkdir -p $out/lib/node_modules/antares
    cp -r dist/* $out/lib/node_modules/antares
    mkdir -p $out/bin
    makeWrapper ${electron}/bin/electron $out/bin/antares \
      --add-flags $out/lib/node_modules/antares/main.js
    runHook postInstall
  '';

  # postInstall = ''

  # '';

  dontNpmBuild = true;
  env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";
  env.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1";

  meta = with lib; {
    description = "Modern, fast and productivity driven SQL client with a focus in UX";
    homepage = "https://github.com/antares-sql/antares";
    license = licenses.mit;
    maintainers = with maintainers; [ eymeric ];
    platforms = platforms.all;
  };
}
logs
this derivation will be built:
  /nix/store/p45p7y07l5ssss18afh9k2bacm6n3drl-antares-0.7.22.drv
building '/nix/store/p45p7y07l5ssss18afh9k2bacm6n3drl-antares-0.7.22.drv'...
Running phase: unpackPhase
unpacking source archive /nix/store/8g1ad8bghbiqgw6nlr4m9ivq69gl3vjp-source
source root is source
Running phase: patchPhase
Executing npmConfigHook
Configuring npm
Validating consistency between /build/source/package-lock.json and /nix/store/7jy0zi3k2b5kj33b2g48gyr85s7x816c-antares-0.7.22-npm-deps/package-lock.json
Installing dependencies
npm WARN deprecated @babel/plugin-proposal-unicode-property-regex@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
npm WARN deprecated @babel/plugin-proposal-private-methods@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
npm WARN deprecated @babel/plugin-proposal-optional-catch-binding@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
npm WARN deprecated @babel/plugin-proposal-nullish-coalescing-operator@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
npm WARN deprecated @babel/plugin-proposal-numeric-separator@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
npm WARN deprecated @babel/plugin-proposal-json-strings@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
npm WARN deprecated @babel/plugin-proposal-dynamic-import@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
npm WARN deprecated @babel/plugin-proposal-export-namespace-from@7.18.9: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
npm WARN deprecated @babel/plugin-proposal-class-properties@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
npm WARN deprecated stringify-package@1.0.1: This module is not used anymore, and has been replaced by @npmcli/package-json
npm WARN deprecated @babel/plugin-proposal-logical-assignment-operators@7.20.7: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
npm WARN deprecated @babel/plugin-proposal-class-static-block@7.21.0: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
npm WARN deprecated @babel/plugin-proposal-private-property-in-object@7.21.11: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
npm WARN deprecated @babel/plugin-proposal-optional-chaining@7.21.0: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
npm WARN deprecated @babel/plugin-proposal-async-generator-functions@7.20.7: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
npm WARN deprecated @babel/plugin-proposal-object-rest-spread@7.20.7: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
npm WARN deprecated sourcemap-codec@1.4.8: Please use @jridgewell/sourcemap-codec instead
npm WARN deprecated standard-version@9.3.2: standard-version is deprecated. If you're a GitHub user, I recommend https://github.com/googleapis/release-please as an alternative.

added 1445 packages, and audited 1446 packages in 7s

216 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities
patching script interpreter paths in node_modules
node_modules/@electron/osx-sign/bin/electron-osx-flat.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@electron/osx-sign/bin/electron-osx-sign.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@electron/asar/bin/asar.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@vueuse/shared/node_modules/vue-demi/bin/vue-demi-fix.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@vueuse/shared/node_modules/vue-demi/bin/vue-demi-switch.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@vueuse/core/node_modules/vue-demi/bin/vue-demi-fix.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@vueuse/core/node_modules/vue-demi/bin/vue-demi-switch.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/app-builder-lib/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/conf/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/conventional-changelog-core/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/css-loader/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/electron-builder/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/electron-builder/install-app-deps.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/electron-updater/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/eslint/node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/eslint/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/eslint/bin/eslint.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/eslint-plugin-vue/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/get-pkg-repo/src/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/global-agent/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/hpack.js/bin/benchmark: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/meow/node_modules/read-pkg/node_modules/semver/bin/semver: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/meow/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/node-abi/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/stylelint/node_modules/typescript/bin/tsc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/stylelint/node_modules/typescript/bin/tsserver: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/stylelint/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/stylelint/bin/stylelint.mjs: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@playwright/test/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/stylelint-config-recommended-vue/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-loader/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/vue-eslint-parser/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/vue-eslint-parser/node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/webpack/node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/webpack/bin/webpack.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/webpack-dev-server/bin/webpack-dev-server.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/xvfb-maybe/node_modules/which/bin/which: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/xvfb-maybe/src/xvfb-maybe.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@babel/parser/bin/babel-parser.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@eslint/eslintrc/node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/7zip-bin/linux/x64/build.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/7zip-bin/linux/x64/do-build.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/7zip-bin/7x.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/all-contributors-cli/dist/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ansi-html-community/bin/ansi-html: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/better-sqlite3/deps/download.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/browserslist/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/conventional-changelog-writer/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/conventional-recommended-bump/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/cpu-features/deps/cpu_features/cmake/ci/doc/generate_image.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/cpu-features/deps/cpu_features/scripts/make_release.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/cpu-features/deps/cpu_features/scripts/run_integration.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/cpu-features/deps/cpu_features/scripts/test_integration.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/cross-env/src/bin/cross-env-shell.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/cross-env/src/bin/cross-env.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/cssesc/bin/cssesc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ejs/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/simple-update-notifier/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/standard-version/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/standard-version/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/envinfo/dist/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/esprima/bin/esparse.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/esprima/bin/esvalidate.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/extract-zip/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/flat/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/git-semver-tags/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/handlebars/bin/handlebars: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/he/bin/he: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/import-local/fixtures/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/is-ci/bin.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/is-docker/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/jake/bin/bash_completion.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/jake/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/jsesc/bin/jsesc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/json5/lib/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/JSONStream/bin.js: interpreter directive changed from "#! /usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/marked/bin/marked.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/mime/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/mkdirp/bin/cmd.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/multicast-dns/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/nan/tools/1to2.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/nanoid/bin/nanoid.cjs: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/normalize-package-data/node_modules/semver/bin/semver: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/pegjs/bin/pegjs: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/playwright-core/lib/cli/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/playwright-core/bin/container_run_server.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash"
node_modules/playwright-core/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/playwright/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/prebuild-install/bin.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/resolve/bin/resolve: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/rimraf/bin.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/sass/sass.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/send/node_modules/mime/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/send/node_modules/mime/src/build.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/sql-formatter/bin/sql-formatter-cli.cjs: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@typescript-eslint/eslint-plugin/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/@typescript-eslint/typescript-estree/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/tar/node_modules/mkdirp/bin/cmd.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/terser/node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/terser/bin/terser: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/terser/bin/uglifyjs: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/tree-kill/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/typescript/bin/tsc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/typescript/bin/tsserver: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/uglify-js/bin/uglifyjs: interpreter directive changed from "#! /usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/update-browserslist-db/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/uuid/dist/bin/uuid: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/conventional-commits-parser/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/git-raw-commits/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/global-prefix/node_modules/which/bin/which: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/html-minifier-terser/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/open/xdg-open: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh"
node_modules/which/bin/node-which: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/electron/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/nearley/bin/nearley-railroad.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/nearley/bin/nearley-test.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/nearley/bin/nearley-unparse.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/nearley/bin/nearleyc.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/pinia/node_modules/vue-demi/bin/vue-demi-fix.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/pinia/node_modules/vue-demi/bin/vue-demi-switch.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/rc/cli.js: interpreter directive changed from "#! /usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/regjsparser/node_modules/jsesc/bin/jsesc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/regjsparser/bin/parser: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/dist/bin-cwd.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/dist/bin-esm.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/dist/bin-script-deprecated.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/dist/bin-script.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/dist/bin-transpile.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/ts-node/dist/bin.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/tsconfig-paths/node_modules/json5/lib/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
node_modules/webpack-cli/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/rlv9fcq70pniyrm3xy21wgk5rdhdh12h-nodejs-20.11.1/bin/node"
rebuilt dependencies successfully
patching script interpreter paths in node_modules
Finished npmConfigHook
patchPhase completed in 2 minutes 18 seconds
Running phase: updateAutotoolsGnuConfigScriptsPhase
Running phase: configurePhase
no configure script, doing nothing
Running phase: buildPhase

> antares@0.7.22 compile
> npm run compile:main && npm run compile:workers && npm run compile:renderer


> antares@0.7.22 compile:main
> webpack --mode=production --config webpack.main.config.js


[1%] setup (before run)
[1%] setup (before run NodeEnvironmentPlugin)
[1%] setup (before run)
[2%] setup (run)
[2%] setup (run webpack-cli)
[2%] setup (run)
[4%] setup (normal module factory)
[5%] setup (context module factory)
[6%] setup (before compile)
[6%] setup (before compile ProgressPlugin)
[6%] setup (before compile)
[7%] setup (compile)
[7%] setup (compile ExternalsPlugin)
[7%] setup (compile)
[8%] setup (compilation)
[8%] setup (compilation CommonJsChunkFormatPlugin)
[8%] setup (compilation StartupChunkDependenciesPlugin)
[8%] setup (compilation CommonJsChunkLoadingPlugin)
[8%] setup (compilation ReadFileCompileWasmPlugin)
[8%] setup (compilation ReadFileCompileAsyncWasmPlugin)
[8%] setup (compilation AssignLibraryPlugin)
[8%] setup (compilation WorkerPlugin)
[8%] setup (compilation SplitChunksPlugin)
[8%] setup (compilation ResolverCachePlugin)
[8%] setup (compilation)
[9%] setup (compilation)
[9%] setup (compilation ProgressPlugin)
[9%] setup (compilation DefinePlugin)
[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[9%] setup (compilation JavascriptModulesPlugin)
[9%] setup (compilation JsonModulesPlugin)
[9%] setup (compilation AssetModulesPlugin)
[9%] setup (compilation EntryPlugin)
[9%] setup (compilation RuntimePlugin)
[9%] setup (compilation InferAsyncModulesPlugin)
[9%] setup (compilation DataUriPlugin)
[9%] setup (compilation FileUriPlugin)
[9%] setup (compilation CompatibilityPlugin)
[9%] setup (compilation HarmonyModulesPlugin)
[9%] setup (compilation AMDPlugin)
[9%] setup (compilation RequireJsStuffPlugin)
[9%] setup (compilation CommonJsPlugin)
[9%] setup (compilation LoaderPlugin)
[9%] setup (compilation NodeStuffPlugin)
[9%] setup (compilation APIPlugin)
[9%] setup (compilation ExportsInfoApiPlugin)
[9%] setup (compilation WebpackIsIncludedPlugin)
[9%] setup (compilation ConstPlugin)
[9%] setup (compilation UseStrictPlugin)
[9%] setup (compilation RequireIncludePlugin)
[9%] setup (compilation RequireEnsurePlugin)
[9%] setup (compilation RequireContextPlugin)
[9%] setup (compilation ImportPlugin)
[9%] setup (compilation RequireContextPlugin)
[9%] setup (compilation SystemPlugin)
[9%] setup (compilation ImportMetaPlugin)
[9%] setup (compilation URLPlugin)
[9%] setup (compilation DefaultStatsFactoryPlugin)
[9%] setup (compilation DefaultStatsPresetPlugin)
[9%] setup (compilation DefaultStatsPrinterPlugin)
[9%] setup (compilation JavascriptMetaInfoPlugin)
[9%] setup (compilation EnsureChunkConditionsPlugin)
[9%] setup (compilation RemoveEmptyChunksPlugin)
[9%] setup (compilation MergeDuplicateChunksPlugin)
[9%] setup (compilation FlagIncludedChunksPlugin)
[9%] setup (compilation SideEffectsFlagPlugin)
[9%] setup (compilation FlagDependencyExportsPlugin)
[9%] setup (compilation FlagDependencyUsagePlugin)
[9%] setup (compilation InnerGraphPlugin)
[9%] setup (compilation MangleExportsPlugin)
[9%] setup (compilation ModuleConcatenationPlugin)
[9%] setup (compilation NoEmitOnErrorsPlugin)
[9%] setup (compilation RealContentHashPlugin)
[9%] setup (compilation WasmFinalizeExportsPlugin)
[9%] setup (compilation DeterministicModuleIdsPlugin)
[9%] setup (compilation DeterministicChunkIdsPlugin)
[9%] setup (compilation DefinePlugin)
[9%] setup (compilation TerserPlugin)
[9%] setup (compilation TemplatedPathPlugin)
[9%] setup (compilation RecordIdsPlugin)
[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[9%] setup (compilation)
[10%] building 
[10%] building (0/0 modules)
[10%] building (import loader ts-loader/index.js)
[10%] building (0/1 modules)
[10%] building (import loader file-loader/dist/cjs.js)
[10%] building (5/11 modules)
[10%] building (37/59 modules)
[10%] building (154/181 modules)
[65%] building (205/205 modules)
[65%] building 
[69%] building (finish)
[70%] sealing (finish module graph)
[70%] sealing (finish module graph ResolverCachePlugin)
[70%] sealing (finish module graph InferAsyncModulesPlugin)
[70%] sealing (finish module graph FlagDependencyExportsPlugin)
[70%] sealing (finish module graph InnerGraphPlugin)
[70%] sealing (finish module graph WasmFinalizeExportsPlugin)
[70%] sealing (finish module graph AssignLibraryPlugin)
[70%] sealing (finish module graph)
[71%] sealing (plugins)
[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[71%] sealing (plugins)
[71%] sealing (dependencies optimization)
[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[71%] sealing (dependencies optimization FlagDependencyUsagePlugin)
[71%] sealing (dependencies optimization)
[72%] sealing (after dependencies optimization)
[73%] sealing (chunk graph)
[73%] sealing (after chunk graph)
[74%] sealing (optimizing)
[74%] sealing (module optimization)
[75%] sealing (after module optimization)
[76%] sealing (chunk optimization)
[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[76%] sealing (chunk optimization SplitChunksPlugin)
[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[76%] sealing (chunk optimization)
[76%] sealing (after chunk optimization)
[77%] sealing (module and chunk tree optimization)
[78%] sealing (after module and chunk tree optimization)
[78%] sealing (chunk modules optimization)
[78%] sealing (chunk modules optimization ModuleConcatenationPlugin)
[78%] sealing (chunk modules optimization)
[79%] sealing (after chunk modules optimization)
[80%] sealing (module reviving)
[80%] sealing (module reviving RecordIdsPlugin)
[80%] sealing (module reviving)
[80%] sealing (before module ids)
[81%] sealing (module ids)
[81%] sealing (module ids DeterministicModuleIdsPlugin)
[81%] sealing (module ids)
[82%] sealing (module id optimization)
[82%] sealing (module id optimization)
[83%] sealing (chunk reviving)
[83%] sealing (chunk reviving RecordIdsPlugin)
[83%] sealing (chunk reviving)
[83%] sealing (before chunk ids)
[84%] sealing (chunk ids)
[84%] sealing (chunk ids DeterministicChunkIdsPlugin)
[84%] sealing (chunk ids)
[85%] sealing (chunk id optimization)
[85%] sealing (chunk id optimization FlagIncludedChunksPlugin)
[85%] sealing (chunk id optimization)
[85%] sealing (after chunk id optimization)
[86%] sealing (record modules)
[86%] sealing (record modules RecordIdsPlugin)
[86%] sealing (record modules)
[87%] sealing (record chunks)
[87%] sealing (record chunks RecordIdsPlugin)
[87%] sealing (record chunks)
[87%] sealing (module hashing)
[88%] sealing (code generation)
[89%] sealing (runtime requirements)
[89%] sealing (hashing)
[90%] sealing (after hashing)
[91%] sealing (record hash)
[91%] sealing (module assets processing)
[92%] sealing (chunk assets processing)
[92%] sealing (asset processing)
[92%] sealing (asset processing ts-loader)
[92%] sealing (asset processing TerserPlugin)
[92%] sealing (asset processing RealContentHashPlugin)
[92%] sealing (asset processing)
[93%] sealing (after asset optimization)
[94%] sealing (recording)
[94%] sealing (after seal)
[95%] emitting (emit)
[98%] emitting (after emit)
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
Build finished at 08:02:58 by 0.000s
asset main.js 880 KiB [emitted] [minimized] (name: main) 1 related asset
asset 4a3eebaeec3c51dc06559503010e737b.png 5.77 KiB [emitted] [immutable] [from: src/renderer/images/logo-64.png] (auxiliary name: main)
asset importer.js 1.69 KiB [emitted] [from: src/main/workers/importer.ts] [minimized] (auxiliary name: main)
asset exporter.js 1.62 KiB [emitted] [from: src/main/workers/exporter.ts] [minimized] (auxiliary name: main)
runtime modules 1.21 KiB 6 modules
cacheable modules 1.25 MiB (javascript) 5.71 KiB (asset)
  modules by path ./node_modules/ 974 KiB
    javascript modules 885 KiB 123 modules
    json modules 89 KiB 9 modules
  modules by path ./src/ 302 KiB (javascript) 5.71 KiB (asset)
    modules by path ./src/main/ 258 KiB (javascript) 5.71 KiB (asset)
      javascript modules 258 KiB 22 modules
      asset modules 84 bytes (javascript) 5.71 KiB (asset) 2 modules
    modules by path ./src/common/ 44.4 KiB 16 modules
    ./src/renderer/images/logo-64.png 80 bytes [built] [code generated]
  ./package.json 5.07 KiB [built] [code generated]
+ 31 modules
main (webpack 5.72.1) compiled successfully in 6134 ms

> antares@0.7.22 compile:workers
> webpack --mode=production --config webpack.workers.config.js


[1%] setup (before run)
[1%] setup (before run NodeEnvironmentPlugin)
[1%] setup (before run)
[2%] setup (run)
[2%] setup (run webpack-cli)
[2%] setup (run)
[4%] setup (normal module factory)
[5%] setup (context module factory)
[6%] setup (before compile)
[6%] setup (before compile ProgressPlugin)
[6%] setup (before compile)
[7%] setup (compile)
[7%] setup (compile ExternalsPlugin)
[7%] setup (compile)
[8%] setup (compilation)
[8%] setup (compilation CommonJsChunkFormatPlugin)
[8%] setup (compilation StartupChunkDependenciesPlugin)
[8%] setup (compilation CommonJsChunkLoadingPlugin)
[8%] setup (compilation ReadFileCompileWasmPlugin)
[8%] setup (compilation ReadFileCompileAsyncWasmPlugin)
[8%] setup (compilation AssignLibraryPlugin)
[8%] setup (compilation WorkerPlugin)
[8%] setup (compilation SplitChunksPlugin)
[8%] setup (compilation ResolverCachePlugin)
[8%] setup (compilation)
[9%] setup (compilation)
[9%] setup (compilation ProgressPlugin)
[9%] setup (compilation DefinePlugin)
[9%] setup (compilation LoaderOptionsPlugin)
[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[9%] setup (compilation JavascriptModulesPlugin)
[9%] setup (compilation JsonModulesPlugin)
[9%] setup (compilation AssetModulesPlugin)
[9%] setup (compilation EntryPlugin)
[9%] setup (compilation RuntimePlugin)
[9%] setup (compilation InferAsyncModulesPlugin)
[9%] setup (compilation DataUriPlugin)
[9%] setup (compilation FileUriPlugin)
[9%] setup (compilation CompatibilityPlugin)
[9%] setup (compilation HarmonyModulesPlugin)
[9%] setup (compilation AMDPlugin)
[9%] setup (compilation RequireJsStuffPlugin)
[9%] setup (compilation CommonJsPlugin)
[9%] setup (compilation LoaderPlugin)
[9%] setup (compilation NodeStuffPlugin)
[9%] setup (compilation APIPlugin)
[9%] setup (compilation ExportsInfoApiPlugin)
[9%] setup (compilation WebpackIsIncludedPlugin)
[9%] setup (compilation ConstPlugin)
[9%] setup (compilation UseStrictPlugin)
[9%] setup (compilation RequireIncludePlugin)
[9%] setup (compilation RequireEnsurePlugin)
[9%] setup (compilation RequireContextPlugin)
[9%] setup (compilation ImportPlugin)
[9%] setup (compilation RequireContextPlugin)
[9%] setup (compilation SystemPlugin)
[9%] setup (compilation ImportMetaPlugin)
[9%] setup (compilation URLPlugin)
[9%] setup (compilation DefaultStatsFactoryPlugin)
[9%] setup (compilation DefaultStatsPresetPlugin)
[9%] setup (compilation DefaultStatsPrinterPlugin)
[9%] setup (compilation JavascriptMetaInfoPlugin)
[9%] setup (compilation EnsureChunkConditionsPlugin)
[9%] setup (compilation RemoveEmptyChunksPlugin)
[9%] setup (compilation MergeDuplicateChunksPlugin)
[9%] setup (compilation FlagIncludedChunksPlugin)
[9%] setup (compilation SideEffectsFlagPlugin)
[9%] setup (compilation FlagDependencyExportsPlugin)
[9%] setup (compilation FlagDependencyUsagePlugin)
[9%] setup (compilation InnerGraphPlugin)
[9%] setup (compilation MangleExportsPlugin)
[9%] setup (compilation ModuleConcatenationPlugin)
[9%] setup (compilation NoEmitOnErrorsPlugin)
[9%] setup (compilation RealContentHashPlugin)
[9%] setup (compilation WasmFinalizeExportsPlugin)
[9%] setup (compilation DeterministicModuleIdsPlugin)
[9%] setup (compilation DeterministicChunkIdsPlugin)
[9%] setup (compilation DefinePlugin)
[9%] setup (compilation TerserPlugin)
[9%] setup (compilation TemplatedPathPlugin)
[9%] setup (compilation RecordIdsPlugin)
[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[9%] setup (compilation)
[10%] building 
[10%] building (0/0 modules)
[10%] building (import loader ts-loader/index.js)
[10%] building (0/2 modules)
[10%] building (4/17 modules)
[38%] building (186/187 modules)
[65%] building (187/187 modules)
[65%] building 
[69%] building (finish)
[70%] sealing (finish module graph)
[70%] sealing (finish module graph ResolverCachePlugin)
[70%] sealing (finish module graph InferAsyncModulesPlugin)
[70%] sealing (finish module graph FlagDependencyExportsPlugin)
[70%] sealing (finish module graph InnerGraphPlugin)
[70%] sealing (finish module graph WasmFinalizeExportsPlugin)
[70%] sealing (finish module graph AssignLibraryPlugin)
[70%] sealing (finish module graph)
[71%] sealing (plugins)
[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[71%] sealing (plugins)
[71%] sealing (dependencies optimization)
[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[71%] sealing (dependencies optimization FlagDependencyUsagePlugin)
[71%] sealing (dependencies optimization)
[72%] sealing (after dependencies optimization)
[73%] sealing (chunk graph)
[73%] sealing (after chunk graph)
[74%] sealing (optimizing)
[74%] sealing (module optimization)
[75%] sealing (after module optimization)
[76%] sealing (chunk optimization)
[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[76%] sealing (chunk optimization SplitChunksPlugin)
[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[76%] sealing (chunk optimization)
[76%] sealing (after chunk optimization)
[77%] sealing (module and chunk tree optimization)
[78%] sealing (after module and chunk tree optimization)
[78%] sealing (chunk modules optimization)
[78%] sealing (chunk modules optimization ModuleConcatenationPlugin)
[78%] sealing (chunk modules optimization)
[79%] sealing (after chunk modules optimization)
[80%] sealing (module reviving)
[80%] sealing (module reviving RecordIdsPlugin)
[80%] sealing (module reviving)
[80%] sealing (before module ids)
[81%] sealing (module ids)
[81%] sealing (module ids DeterministicModuleIdsPlugin)
[81%] sealing (module ids)
[82%] sealing (module id optimization)
[82%] sealing (module id optimization)
[83%] sealing (chunk reviving)
[83%] sealing (chunk reviving RecordIdsPlugin)
[83%] sealing (chunk reviving)
[83%] sealing (before chunk ids)
[84%] sealing (chunk ids)
[84%] sealing (chunk ids DeterministicChunkIdsPlugin)
[84%] sealing (chunk ids)
[85%] sealing (chunk id optimization)
[85%] sealing (chunk id optimization FlagIncludedChunksPlugin)
[85%] sealing (chunk id optimization)
[85%] sealing (after chunk id optimization)
[86%] sealing (record modules)
[86%] sealing (record modules RecordIdsPlugin)
[86%] sealing (record modules)
[87%] sealing (record chunks)
[87%] sealing (record chunks RecordIdsPlugin)
[87%] sealing (record chunks)
[87%] sealing (module hashing)
[88%] sealing (code generation)
[89%] sealing (runtime requirements)
[89%] sealing (hashing)
[90%] sealing (after hashing)
[91%] sealing (record hash)
[91%] sealing (module assets processing)
[92%] sealing (chunk assets processing)
[92%] sealing (asset processing)
[92%] sealing (asset processing ts-loader)
[92%] sealing (asset processing TerserPlugin)
[92%] sealing (asset processing RealContentHashPlugin)
[92%] sealing (asset processing)
[93%] sealing (after asset optimization)
[94%] sealing (recording)
[94%] sealing (after seal)
[95%] emitting (emit)
[98%] emitting (after emit)
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
Build finished at 08:03:05 by 0.000s
asset exporter.js 846 KiB [emitted] [minimized] (name: exporter) 1 related asset
asset importer.js 822 KiB [emitted] [minimized] (name: importer) 1 related asset
runtime modules 176 bytes 2 modules
modules by path ./node_modules/ 944 KiB
  modules by path ./node_modules/mysql2/ 576 KiB 74 modules
  modules by path ./node_modules/electron-log/ 51.2 KiB 21 modules
  modules by path ./node_modules/iconv-lite/ 198 KiB 21 modules
  modules by path ./node_modules/sqlstring/ 5.77 KiB 2 modules
  modules by path ./node_modules/named-placeholders/ 37.3 KiB 2 modules
  modules by path ./node_modules/seq-queue/ 4.3 KiB 2 modules
  + 5 modules
modules by path ./src/ 279 KiB
  modules by path ./src/main/ 239 KiB
    modules by path ./src/main/libs/ 233 KiB 15 modules
    modules by path ./src/main/workers/*.ts 5.71 KiB 2 modules
  modules by path ./src/common/ 40 KiB 14 modules
+ 29 modules
workers (webpack 5.72.1) compiled successfully in 6067 ms

> antares@0.7.22 compile:renderer
> webpack --mode=production --config webpack.renderer.config.js


[1%] setup (before run)
[1%] setup (before run NodeEnvironmentPlugin)
[1%] setup (before run)
[2%] setup (run)
[2%] setup (run webpack-cli)
[2%] setup (run)
[4%] setup (normal module factory)
[5%] setup (context module factory)
[6%] setup (before compile)
[6%] setup (before compile ProgressPlugin)
[6%] setup (before compile)
[7%] setup (compile)
[7%] setup (compile ExternalsPlugin)
[7%] setup (compile)
[8%] setup (compilation)
[8%] setup (compilation mini-css-extract-plugin)
[8%] setup (compilation ArrayPushCallbackChunkFormatPlugin)
[8%] setup (compilation JsonpChunkLoadingPlugin)
[8%] setup (compilation StartupChunkDependenciesPlugin)
[8%] setup (compilation ImportScriptsChunkLoadingPlugin)
[8%] setup (compilation FetchCompileWasmPlugin)
[8%] setup (compilation FetchCompileAsyncWasmPlugin)
[8%] setup (compilation WorkerPlugin)
[8%] setup (compilation SplitChunksPlugin)
[8%] setup (compilation ResolverCachePlugin)
[8%] setup (compilation HtmlWebpackPlugin)
[8%] setup (compilation)
[9%] setup (compilation)
[9%] setup (compilation ProgressPlugin)
[9%] setup (compilation mini-css-extract-plugin)
[9%] setup (compilation vue-loader-plugin)
[9%] setup (compilation DefinePlugin)
[9%] setup (compilation HotModuleReplacementPlugin)
[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[9%] setup (compilation EvalSourceMapDevToolPlugin)
[9%] setup (compilation JavascriptModulesPlugin)
[9%] setup (compilation JsonModulesPlugin)
[9%] setup (compilation AssetModulesPlugin)
[9%] setup (compilation EntryPlugin)
[9%] setup (compilation RuntimePlugin)
[9%] setup (compilation InferAsyncModulesPlugin)
[9%] setup (compilation DataUriPlugin)
[9%] setup (compilation FileUriPlugin)
[9%] setup (compilation CompatibilityPlugin)
[9%] setup (compilation HarmonyModulesPlugin)
[9%] setup (compilation AMDPlugin)
[9%] setup (compilation RequireJsStuffPlugin)
[9%] setup (compilation CommonJsPlugin)
[9%] setup (compilation LoaderPlugin)
[9%] setup (compilation NodeStuffPlugin)
[9%] setup (compilation APIPlugin)
[9%] setup (compilation ExportsInfoApiPlugin)
[9%] setup (compilation WebpackIsIncludedPlugin)
[9%] setup (compilation ConstPlugin)
[9%] setup (compilation UseStrictPlugin)
[9%] setup (compilation RequireIncludePlugin)
[9%] setup (compilation RequireEnsurePlugin)
[9%] setup (compilation RequireContextPlugin)
[9%] setup (compilation ImportPlugin)
[9%] setup (compilation RequireContextPlugin)
[9%] setup (compilation SystemPlugin)
[9%] setup (compilation ImportMetaPlugin)
[9%] setup (compilation URLPlugin)
[9%] setup (compilation DefaultStatsFactoryPlugin)
[9%] setup (compilation DefaultStatsPresetPlugin)
[9%] setup (compilation DefaultStatsPrinterPlugin)
[9%] setup (compilation JavascriptMetaInfoPlugin)
[9%] setup (compilation EnsureChunkConditionsPlugin)
[9%] setup (compilation RemoveEmptyChunksPlugin)
[9%] setup (compilation MergeDuplicateChunksPlugin)
[9%] setup (compilation FlagIncludedChunksPlugin)
[9%] setup (compilation SideEffectsFlagPlugin)
[9%] setup (compilation FlagDependencyExportsPlugin)
[9%] setup (compilation FlagDependencyUsagePlugin)
[9%] setup (compilation InnerGraphPlugin)
[9%] setup (compilation MangleExportsPlugin)
[9%] setup (compilation ModuleConcatenationPlugin)
[9%] setup (compilation NoEmitOnErrorsPlugin)
[9%] setup (compilation RealContentHashPlugin)
[9%] setup (compilation WasmFinalizeExportsPlugin)
[9%] setup (compilation DeterministicModuleIdsPlugin)
[9%] setup (compilation DeterministicChunkIdsPlugin)
[9%] setup (compilation DefinePlugin)
[9%] setup (compilation TerserPlugin)
[9%] setup (compilation TemplatedPathPlugin)
[9%] setup (compilation RecordIdsPlugin)
[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[9%] setup (compilation)
[10%] building 
[10%] building (0/0 modules)
[10%] building (import loader ts-loader/index.js)
[10%] building (0/1 modules)
[10%] building (import loader vue-loader/dist/index.js)
[10%] building (5/12 modules)
[10%] building (import loader mini-css-extract-plugin/dist/loader.js)
[10%] building (import loader css-loader/dist/cjs.js)
[10%] building (5/16 modules)
[10%] building (import loader sass-loader/dist/cjs.js)
[10%] building (5/16 modules)
[10%] building (import loader vue-loader/dist/pitcher.js)
[10%] building (7/22 modules)
[10%] building (import loader vue-loader/dist/stylePostLoader.js)
[10%] building (7/43 modules)
[10%] building (43/116 modules)
[10%] building (import loader babel-loader/lib/index.js)
[10%] building (import loader vue-loader/dist/templateLoader.js)
[10%] building (59/685 modules)
[10%] building (import loader file-loader/dist/cjs.js)
[10%] building (59/685 modules)
[10%] building (522/776 modules)
[10%] building (714/950 modules)
[10%] building (765/999 modules)
[10%] building (996/1073 modules)
[10%] building (1113/1400 modules)
[10%] building (1700/2962 modules)
[65%] building (2980/2980 modules)
[65%] building 
[69%] building (finish)
[70%] sealing (finish module graph)
[70%] sealing (finish module graph ResolverCachePlugin)
[70%] sealing (finish module graph InferAsyncModulesPlugin)
[70%] sealing (finish module graph FlagDependencyExportsPlugin)
[70%] sealing (finish module graph InnerGraphPlugin)
[70%] sealing (finish module graph WasmFinalizeExportsPlugin)
[70%] sealing (finish module graph)
[71%] sealing (plugins)
[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[71%] sealing (plugins)
[71%] sealing (dependencies optimization)
[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[71%] sealing (dependencies optimization FlagDependencyUsagePlugin)
[71%] sealing (dependencies optimization)
[72%] sealing (after dependencies optimization)
[73%] sealing (chunk graph)
[73%] sealing (after chunk graph)
[74%] sealing (optimizing)
[74%] sealing (module optimization)
[75%] sealing (after module optimization)
[76%] sealing (chunk optimization)
[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[76%] sealing (chunk optimization SplitChunksPlugin)
[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[76%] sealing (chunk optimization)
[76%] sealing (after chunk optimization)
[77%] sealing (module and chunk tree optimization)
[77%] sealing (module and chunk tree optimization PersistentChildCompilerSinglet
onPlugin)
[77%] sealing (module and chunk tree optimization)
[78%] sealing (after module and chunk tree optimization)
[78%] sealing (chunk modules optimization)
[78%] sealing (chunk modules optimization ModuleConcatenationPlugin)
[78%] sealing (chunk modules optimization)
[79%] sealing (after chunk modules optimization)
[80%] sealing (module reviving)
[80%] sealing (module reviving RecordIdsPlugin)
[80%] sealing (module reviving)
[80%] sealing (before module ids)
[81%] sealing (module ids)
[81%] sealing (module ids DeterministicModuleIdsPlugin)
[81%] sealing (module ids)
[82%] sealing (module id optimization)
[82%] sealing (module id optimization)
[83%] sealing (chunk reviving)
[83%] sealing (chunk reviving RecordIdsPlugin)
[83%] sealing (chunk reviving)
[83%] sealing (before chunk ids)
[84%] sealing (chunk ids)
[84%] sealing (chunk ids DeterministicChunkIdsPlugin)
[84%] sealing (chunk ids)
[85%] sealing (chunk id optimization)
[85%] sealing (chunk id optimization FlagIncludedChunksPlugin)
[85%] sealing (chunk id optimization)
[85%] sealing (after chunk id optimization)
[86%] sealing (record modules)
[86%] sealing (record modules RecordIdsPlugin)
[86%] sealing (record modules)
[87%] sealing (record chunks)
[87%] sealing (record chunks RecordIdsPlugin)
[87%] sealing (record chunks)
[87%] sealing (module hashing)
[88%] sealing (code generation)
[89%] sealing (runtime requirements)
[89%] sealing (hashing)
[90%] sealing (after hashing)
[91%] sealing (record hash)
[91%] sealing (module assets processing)
[92%] sealing (chunk assets processing)
[92%] sealing (asset processing)
[92%] sealing (asset processing HotModuleReplacementPlugin)
[92%] sealing (asset processing PersistentChildCompilerSingletonPlugin)
[92%] sealing (asset processing TerserPlugin)
[92%] sealing (asset processing HtmlWebpackPlugin)
[92%] sealing (asset processing RealContentHashPlugin)
[92%] sealing (asset processing)
[93%] sealing (after asset optimization)
[94%] sealing (recording)
[94%] sealing (recording HotModuleReplacementPlugin)
[94%] sealing (recording)
[94%] sealing (after seal)
[95%] emitting (emit)
[98%] emitting (after emit)
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
Build finished at 08:03:27 by 0.000s
assets by path *.js 33.5 MiB
  asset renderer.js 25.1 MiB [emitted] [minimized] (name: main)
  asset 656d50a42aa6a45ee238570e6351431a.js 1.51 MiB [emitted] [immutable] [from: node_modules/ace-builds/src-noconflict/worker-xquery.js] [minimized] (auxiliary name: main)
  asset 3ebd26efb88fa3f284dee8a48fdb2158.js 498 KiB [emitted] [immutable] [from: node_modules/ace-builds/src-noconflict/worker-javascript.js] [minimized] (auxiliary name: main)
  asset 0434496fdaef6855d0d4772f52889df6.js 495 KiB [emitted] [immutable] [from: node_modules/ace-builds/src-noconflict/mode-php_laravel_blade.js] [minimized] (auxiliary name: main)
  + 449 assets
assets by path images/ 164 KiB
  assets by path images/*.svg 63 KiB
    asset images/873aeeab7aa7ef9f0b31.svg 10.2 KiB [emitted] [immutable] [from: src/renderer/images/logo-dark.svg] (auxiliary name: main)
    + 20 assets
  assets by path images/*.png 101 KiB
    asset images/c3e58011c7f560f52744.png 59.9 KiB [emitted] [immutable] [from: src/renderer/images/light.png] (auxiliary name: main)
    + 4 assets
asset main.css 151 KiB [emitted] (name: main)
asset index.html 401 bytes [emitted]
Entrypoint main 25.2 MiB (8.62 MiB) = main.css 151 KiB renderer.js 25.1 MiB 478 auxiliary assets
orphan modules 586 KiB (javascript) 36.9 KiB (asset) 821 KiB (runtime) [orphan] 753 modules
runtime modules 30 KiB 14 modules
modules by path ./node_modules/ 6.57 MiB (javascript) 18.4 KiB (css/mini-extract) 2340 modules
modules by path ./src/ 2.14 MiB (javascript) 134 KiB (css/mini-extract) 128 KiB (asset) 376 modules
+ 17 modules
renderer (webpack 5.72.1) compiled successfully in 21178 ms
buildPhase completed in 36 seconds
Running phase: installPhase
Running phase: fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22
checking for references to /build/ in /nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22...
patching script interpreter paths in /nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22
/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22

╭─     eymeric    ~/tmp/nixpkgs     antares                                                                                                                                                                                         09:03  28.03.24    99%  
╰ /nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/bin/antares 
App threw an error during load
Error: Cannot find module 'electron-store'
Require stack:
- /nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1055:15)
    at s._resolveFilename (node:electron/js2c/browser_init:2:115476)
    at Module._load (node:internal/modules/cjs/loader:908:27)
    at c._load (node:electron/js2c/node_init:2:13672)
    at Module.require (node:internal/modules/cjs/loader:1122:19)
    at require (node:internal/modules/helpers:130:18)
    at 4699 (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:622228)
    at E (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:762259)
    at 9989 (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:619368)
    at E (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:762259)
A JavaScript error occurred in the main process
Uncaught Exception:
Error: Cannot find module 'electron-store'
Require stack:
- /nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1055:15)
    at s._resolveFilename (node:electron/js2c/browser_init:2:115476)
    at Module._load (node:internal/modules/cjs/loader:908:27)
    at c._load (node:electron/js2c/node_init:2:13672)
    at Module.require (node:internal/modules/cjs/loader:1122:19)
    at require (node:internal/modules/helpers:130:18)
    at 4699 (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:622228)
    at E (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:762259)
    at 9989 (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:619368)
    at E (/nix/store/c3phm57wkq3gch9a276ar5psybvvj25y-antares-0.7.22/lib/node_modules/antares/main.js:2:762259)
^C%  

@hatch01
Copy link
Contributor Author

hatch01 commented Mar 28, 2024

the missing file is ./lib/node_modules/antares/node_modules/electron-store

@hatch01
Copy link
Contributor Author

hatch01 commented Mar 29, 2024

@AndersonTorres do you have any idea on why this is happening?

@AndersonTorres
Copy link
Member

No idea. Maybe it lacks an NPM package?

https://www.npmjs.com/package/electron-store

@hatch01
Copy link
Contributor Author

hatch01 commented Apr 1, 2024

@AndersonTorres I found how to fix it.
This seems pretty clean to me now.

@nixos-discourse
Copy link

This pull request has been mentioned on NixOS Discourse. There might be relevant details there:

https://discourse.nixos.org/t/prs-ready-for-review/3032/3800

@SuperSandro2000 SuperSandro2000 merged commit 663a878 into NixOS:master Apr 17, 2024
23 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants