sameersbn / sameersbn/docker-gitlab

Upgrade from 13.5.3 to 13.5.4 fails while compiling assets

Open
#2,262 3 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Shell
Stars
8.1k
Forks
2.1k
Avg merge
17h 47m
Merged PRs (30d)
7

Description

Hello,

I'm trying to upgrade my GitLab vom 13.5.3 to the newes version even the Update to 13.5.4 fails. I'm using the docker-compose file of this repo which works for me usually quiet good. During my last update postgresql and rake seemed to update properly but the gitlab container stops during migration. I tried to debug the problem with my limited knowledge about GitLab and Rake. I found out that it seems like rails fails during recompiling assets since yarn ist not able to install npm packages. At this point I have no Idea how to go on with debugging. Please find the output of my debug attempts below. Thanks in advance for your help.

Best
Stephan

Setup:

Tested on Host:

Ubuntu 20.04

Output of docker version:
docker version
Client: Docker Engine - Community
 Version:           20.10.0
 API version:       1.41
 Go version:        go1.13.15
 Git commit:        7287ab3
 Built:             Tue Dec  8 18:59:40 2020
 OS/Arch:           linux/amd64
 Context:           default
 Experimental:      true

Server: Docker Engine - Community
 Engine:
  Version:          20.10.0
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.13.15
  Git commit:       eeddea2
  Built:            Tue Dec  8 18:57:45 2020
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.4.3
  GitCommit:        269548fa27e0089a8b8278fc4fc781d7f65a939b
 runc:
  Version:          1.0.0-rc92
  GitCommit:        ff819c7e9184c13b7c2607fe6c30ae19403a7aff
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0
Output of docker info
Client:
 Context:    default
 Debug Mode: false
 Plugins:
  app: Docker App (Docker Inc., v0.9.1-beta3)
  buildx: Build with BuildKit (Docker Inc., v0.4.2-docker)

Server:
 Containers: 3
  Running: 0
  Paused: 0
  Stopped: 3
 Images: 4
 Server Version: 20.10.0
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 1
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 269548fa27e0089a8b8278fc4fc781d7f65a939b
 runc version: ff819c7e9184c13b7c2607fe6c30ae19403a7aff
 init version: de40ad0
 Security Options:
  apparmor
  seccomp
   Profile: default
 Kernel Version: 5.4.0-56-generic
 Operating System: Ubuntu 20.04.1 LTS
 OSType: linux
 Architecture: x86_64
 CPUs: 24
 Total Memory: 31.37GiB
 Name: starhopper
 ID: LVE6:O66Q:HPCT:UZ6L:KH6D:ZRQZ:KS7O:E353:VA4F:P7TF:VFBB:S66U
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support
WARNING: No blkio weight support
WARNING: No blkio weight_device support

Docker run command:

docker-compose up
Compose file
version: '2'

networks:
    nginx_proxy-tier:
        external: true

services:
  redis:
    restart: 'no'
    image: redis:5.0.9
    command:
    - --loglevel warning
    volumes:
    - ./volumes/redis:/var/lib/redis:Z
    networks:
        nginx_proxy-tier:
            ipv4_address: 172.21.3.2

  postgresql:
    restart: 'no'
    image: sameersbn/postgresql:11-20200524
    volumes:
    - ./volumes/postgresql:/var/lib/postgresql:Z
    environment:
    - DB_USER=gitlab
    - DB_PASS=g!1Lab?!
    - DB_NAME=gitlabhq_production
    - DB_EXTENSION=pg_trgm,btree_gist
    networks:
        nginx_proxy-tier:
            ipv4_address: 172.21.3.3
  gitlab:
    restart: 'no'
    image: 'sameersbn/gitlab:13.5.4'
    depends_on:
    - redis
    - postgresql
    ports:
#    - "10080:80"
    - "10022:22"
    volumes:
    - ./volumes/gitlab:/home/git/data:Z

    networks:
        nginx_proxy-tier:
            ipv4_address: 172.21.3.1

    environment:
    - DEBUG=false

    - DB_ADAPTER=postgresql
    - DB_HOST=postgresql
    - DB_PORT=5432
    - DB_USER=gitlab
    - DB_PASS=g!1Lab?!
    - DB_NAME=gitlabhq_production

    - REDIS_HOST=redis
    - REDIS_PORT=6379

    - TZ=Europe/Berlin
    - GITLAB_TIMEZONE=Berlin

    - GITLAB_HTTPS=true
    - SSL_SELF_SIGNED=false

    - GITLAB_HOST=*********
    - GITLAB_PORT=443
    - GITLAB_SSH_PORT=10022
    - GITLAB_SSH_HOST=*********
    - GITLAB_RELATIVE_URL_ROOT=/gitlab
    - GITLAB_SECRETS_DB_KEY_BASE=long-and-random-alphanumeric-string
    - GITLAB_SECRETS_SECRET_KEY_BASE=long-and-random-alphanumeric-string
    - GITLAB_SECRETS_OTP_KEY_BASE=long-and-random-alphanumeric-string

    - GITLAB_ROOT_PASSWORD=
    - GITLAB_ROOT_EMAIL=

    - GITLAB_NOTIFY_ON_BROKEN_BUILDS=true
    - GITLAB_NOTIFY_PUSHER=false

    - GITLAB_EMAIL=notifications@example.com
    - GITLAB_EMAIL_REPLY_TO=noreply@example.com
    - GITLAB_INCOMING_EMAIL_ADDRESS=reply@example.com

    - GITLAB_BACKUP_SCHEDULE=daily
    - GITLAB_BACKUP_TIME=01:00

    - SMTP_ENABLED=false
    - SMTP_DOMAIN=www.example.com
    - SMTP_HOST=smtp.gmail.com
    - SMTP_PORT=587
    - SMTP_USER=mailer@example.com
    - SMTP_PASS=password
    - SMTP_STARTTLS=true
    - SMTP_AUTHENTICATION=login

    - IMAP_ENABLED=false
    - IMAP_HOST=imap.gmail.com
    - IMAP_PORT=993
    - IMAP_USER=mailer@example.com
    - IMAP_PASS=password
    - IMAP_SSL=true
    - IMAP_STARTTLS=false

    - OAUTH_ENABLED=false
    - OAUTH_AUTO_SIGN_IN_WITH_PROVIDER=
    - OAUTH_ALLOW_SSO=
    - OAUTH_BLOCK_AUTO_CREATED_USERS=true
    - OAUTH_AUTO_LINK_LDAP_USER=false
    - OAUTH_AUTO_LINK_SAML_USER=false
    - OAUTH_EXTERNAL_PROVIDERS=

    - OAUTH_CAS3_LABEL=cas3
    - OAUTH_CAS3_SERVER=
    - OAUTH_CAS3_DISABLE_SSL_VERIFICATION=false
    - OAUTH_CAS3_LOGIN_URL=/cas/login
    - OAUTH_CAS3_VALIDATE_URL=/cas/p3/serviceValidate
    - OAUTH_CAS3_LOGOUT_URL=/cas/logout

    - OAUTH_GOOGLE_API_KEY=
    - OAUTH_GOOGLE_APP_SECRET=
    - OAUTH_GOOGLE_RESTRICT_DOMAIN=

    - OAUTH_FACEBOOK_API_KEY=
    - OAUTH_FACEBOOK_APP_SECRET=

    - OAUTH_TWITTER_API_KEY=
    - OAUTH_TWITTER_APP_SECRET=

    - OAUTH_GITHUB_API_KEY=
    - OAUTH_GITHUB_APP_SECRET=
    - OAUTH_GITHUB_URL=
    - OAUTH_GITHUB_VERIFY_SSL=

    - OAUTH_GITLAB_API_KEY=
    - OAUTH_GITLAB_APP_SECRET=

    - OAUTH_BITBUCKET_API_KEY=
    - OAUTH_BITBUCKET_APP_SECRET=

    - OAUTH_SAML_ASSERTION_CONSUMER_SERVICE_URL=
    - OAUTH_SAML_IDP_CERT_FINGERPRINT=
    - OAUTH_SAML_IDP_SSO_TARGET_URL=
    - OAUTH_SAML_ISSUER=
    - OAUTH_SAML_LABEL="Our SAML Provider"
    - OAUTH_SAML_NAME_IDENTIFIER_FORMAT=urn:oasis:names:tc:SAML:2.0:nameid-format:transient
    - OAUTH_SAML_GROUPS_ATTRIBUTE=
    - OAUTH_SAML_EXTERNAL_GROUPS=
    - OAUTH_SAML_ATTRIBUTE_STATEMENTS_EMAIL=
    - OAUTH_SAML_ATTRIBUTE_STATEMENTS_NAME=
    - OAUTH_SAML_ATTRIBUTE_STATEMENTS_USERNAME=
    - OAUTH_SAML_ATTRIBUTE_STATEMENTS_FIRST_NAME=
    - OAUTH_SAML_ATTRIBUTE_STATEMENTS_LAST_NAME=

    - OAUTH_CROWD_SERVER_URL=
    - OAUTH_CROWD_APP_NAME=
    - OAUTH_CROWD_APP_PASSWORD=

    - OAUTH_AUTH0_CLIENT_ID=
    - OAUTH_AUTH0_CLIENT_SECRET=
    - OAUTH_AUTH0_DOMAIN=

    - OAUTH_AZURE_API_KEY=
    - OAUTH_AZURE_API_SECRET=
    - OAUTH_AZURE_TENANT_ID=

Command line output during migration

Starting gitlab_postgresql_1 ... done
Starting gitlab_redis_1      ... done
Recreating gitlab_gitlab_1   ... done
Attaching to gitlab_postgresql_1, gitlab_redis_1, gitlab_gitlab_1
postgresql_1  | Initializing datadir...
gitlab_1      | Loading /etc/docker-gitlab/runtime/env-defaults
gitlab_1      | Initializing logdir...
gitlab_1      | Initializing datadir...
postgresql_1  | Initializing certdir...
postgresql_1  | Initializing logdir...
redis_1       | 1:C 09 Dec 2020 10:54:29.863 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1       | 1:C 09 Dec 2020 10:54:29.863 # Redis version=5.0.9, bits=64, commit=00000000, modified=0, pid=1, just started
redis_1       | 1:C 09 Dec 2020 10:54:29.863 # Configuration loaded
postgresql_1  | Initializing rundir...
redis_1       | 1:M 09 Dec 2020 10:54:29.864 # Server initialized
redis_1       | 1:M 09 Dec 2020 10:54:29.864 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
redis_1       | 1:M 09 Dec 2020 10:54:29.864 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
postgresql_1  | Setting resolv.conf ACLs...
postgresql_1  | Creating database user: gitlab
postgresql_1  | Creating database: gitlabhq_production...
postgresql_1  | ‣ Loading pg_trgm extension...
postgresql_1  | ‣ Loading btree_gist extension...
postgresql_1  | ‣ Granting access to gitlab user...
postgresql_1  | Starting PostgreSQL 11...
postgresql_1  | 2020-12-09 10:54:30.433 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
postgresql_1  | 2020-12-09 10:54:30.433 UTC [1] LOG:  listening on IPv6 address "::", port 5432
postgresql_1  | 2020-12-09 10:54:30.440 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
postgresql_1  | 2020-12-09 10:54:30.456 UTC [123] LOG:  database system was shut down at 2020-12-09 10:54:30 UTC
postgresql_1  | 2020-12-09 10:54:30.467 UTC [1] LOG:  database system is ready to accept connections
gitlab_1      | Installing configuration templates...
gitlab_1      | SSL Key, SSL Certificate and DHParam were not found.
gitlab_1      | Assuming that the container is running behind a HTTPS enabled load balancer.
gitlab_1      | Configuring gitlab...
gitlab_1      | Configuring gitlab::database
gitlab_1      | Configuring gitlab::redis
gitlab_1      | Configuring gitlab::secrets...
gitlab_1      | Configuring gitlab::sidekiq...
gitlab_1      | Configuring gitlab::gitaly...
gitlab_1      | Configuring gitlab::monitoring...
gitlab_1      | Configuring gitlab::gitlab-workhorse...
gitlab_1      | Configuring gitlab::relative_url...
gitlab_1      | Configuring gitlab::puma...
gitlab_1      | Configuring gitlab::timezone...
gitlab_1      | Configuring gitlab::rack_attack...
gitlab_1      | Configuring gitlab::ci...
gitlab_1      | Configuring gitlab::artifacts...
gitlab_1      | Configuring gitlab::lfs...
gitlab_1      | Configuring gitlab::uploads...
gitlab_1      | Configuring gitlab::mattermost...
gitlab_1      | Configuring gitlab::project_features...
gitlab_1      | Configuring gitlab::oauth...
gitlab_1      | Configuring gitlab::ldap...
gitlab_1      | Configuring gitlab::cron_jobs...
gitlab_1      | Configuring gitlab::backups...
gitlab_1      | Configuring gitlab::backups::schedule...
gitlab_1      | Configuring gitlab::registry...
gitlab_1      | Configuring gitlab::pages...
gitlab_1      | Configuring gitlab::sentry...
gitlab_1      | Configuring gitlab-shell...
gitlab_1      | Configuring nginx...
gitlab_1      | Configuring nginx::gitlab...
gitlab_1      | Configuring nginx::gitlab::hsts...
gitlab_1      | Migrating database...
gitlab_1      | 2020-12-09 11:54:32,256 CRIT Supervisor running as root (no user in config file)
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/cron.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/gitaly.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/gitlab-workhorse.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/groups.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/mail_room.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/nginx.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/puma.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/sidekiq.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,256 INFO Included extra file "/etc/supervisor/conf.d/sshd.conf" during parsing
gitlab_1      | 2020-12-09 11:54:32,260 INFO RPC interface 'supervisor' initialized
gitlab_1      | 2020-12-09 11:54:32,260 CRIT Server 'unix_http_server' running without any HTTP authentication checking
gitlab_1      | 2020-12-09 11:54:32,260 INFO supervisord started with pid 645
gitlab_1      | 2020-12-09 11:54:33,262 INFO spawned: 'gitaly' with pid 666
gitlab_1      | 2020-12-09 11:54:33,263 INFO spawned: 'puma' with pid 667
gitlab_1      | 2020-12-09 11:54:33,265 INFO spawned: 'gitlab-workhorse' with pid 668
gitlab_1      | 2020-12-09 11:54:33,266 INFO spawned: 'sidekiq' with pid 669
gitlab_1      | 2020-12-09 11:54:33,267 INFO spawned: 'nginx' with pid 670
gitlab_1      | 2020-12-09 11:54:33,268 INFO spawned: 'sshd' with pid 676
gitlab_1      | 2020-12-09 11:54:33,269 INFO spawned: 'cron' with pid 677
gitlab_1      | 2020-12-09 11:54:34,944 INFO success: gitaly entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | 2020-12-09 11:54:34,944 INFO success: puma entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | 2020-12-09 11:54:34,944 INFO success: gitlab-workhorse entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | 2020-12-09 11:54:34,944 INFO success: sidekiq entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | 2020-12-09 11:54:34,944 INFO success: nginx entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | 2020-12-09 11:54:34,945 INFO success: sshd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | 2020-12-09 11:54:34,945 INFO success: cron entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
gitlab_1      | Missing Rails.application.secrets.openid_connect_signing_key for production environment. The secret will be generated and stored in config/secrets.yml.
gitlab_1      | Recompiling assets (relative_url in use), this could take a while...
gitlab_gitlab_1 exited with code 1

Trying to compile assets manually

starhopper:~/tmp/docker/gitlab (master)$ docker-compose run  gitlab /bin/bash
Creating gitlab_gitlab_run ... done
Loading /etc/docker-gitlab/runtime/env-defaults
+ case ${1} in
+ exec /bin/bash
root@93146990d25d:/home/git/gitlab# bundle exec rake -v gitlab:assets:compile NODE_OPTIONS=--max-old-space-size=4096
^Crake aborted!
Interrupt:
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rouge-3.24.0/lib/rouge/lexer.rb:532:in `load'
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rouge-3.24.0/lib/rouge/lexer.rb:532:in `load_lexer'
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rouge-3.24.0/lib/rouge.rb:54:in `block in load_lexers'
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rouge-3.24.0/lib/rouge.rb:53:in `each'
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rouge-3.24.0/lib/rouge.rb:53:in `load_lexers'
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rouge-3.24.0/lib/rouge.rb:69:in `<top (required)>'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/runtime.rb:81:in `require'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/runtime.rb:81:in `block (2 levels) in require'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/runtime.rb:76:in `each'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/runtime.rb:76:in `block in require'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/runtime.rb:65:in `each'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/runtime.rb:65:in `require'
/var/lib/gems/2.6.0/gems/bundler-1.17.3/lib/bundler.rb:114:in `require'
/home/git/gitlab/config/application.rb:15:in `<top (required)>'
/home/git/gitlab/Rakefile:5:in `require'
/home/git/gitlab/Rakefile:5:in `<top (required)>'
/home/git/gitlab/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/exe/rake:27:in `<top (required)>'
(See full trace by running task with --trace)
root@93146990d25d:/home/git/gitlab# sudo -HEu git bundle exec rake -v gitlab:assets:compile NODE_OPTIONS=--max-old-space-size=4096
error "anymatch" not installed
error "braces" not installed
error "bytes" not installed
error "cacache" not installed
error "camelcase" not installed
error "cliui" not installed
error "cross-spawn" not installed
error "debug" not installed
error "define-property" not installed
error "depd" not installed
error "enhanced-resolve" not installed
error "entities" not installed
error "escape-string-regexp" not installed
error "execa" not installed
error "extend-shallow" not installed
error "find-cache-dir" not installed
error "find-up" not installed
error "get-caller-file" not installed
error "get-stream" not installed
error "glob-parent" not installed
error "global-modules" not installed
error "globals" not installed
error "has-flag" not installed
error "http-errors" not installed
error "import-local" not installed
error "inherits" not installed
error "is-buffer" not installed
error "is-descriptor" not installed
error "is-extendable" not installed
error "is-fullwidth-code-point" not installed
error "is-glob" not installed
error "is-number" not installed
error "is-wsl" not installed
error "isarray" not installed
error "isobject" not installed
error "json5" not installed
error "kind-of" not installed
error "loader-utils" not installed
error "lru-cache" not installed
error "make-dir" not installed
error "memory-fs" not installed
error "micromatch" not installed
error "mime" not installed
error "minimist" not installed
error "mkdirp" not installed
error "ms" not installed
error "normalize-path" not installed
error "p-limit" not installed
error "path-exists" not installed
error "path-key" not installed
error "path-type" not installed
error "pkg-dir" not installed
error "postcss-selector-parser" not installed
error "postcss-value-parser" not installed
error "pump" not installed
error "punycode" not installed
error "qs" not installed
error "readable-stream" not installed
error "require-main-filename" not installed
error "rimraf" not installed
error "schema-utils" not installed
error "semver" not installed
error "setprototypeof" not installed
error "source-map" not installed
error "statuses" not installed
error "string_decoder" not installed
error "strip-ansi" not installed
error "tapable" not installed
error "url" not installed
error "vscode-uri" not installed
error "which" not installed
error "yargs-parser" not installed
error "@babel/core" not installed
error "@babel/plugin-proposal-class-properties" not installed
error "@babel/plugin-proposal-json-strings" not installed
error "@babel/plugin-proposal-private-methods" not installed
error "@babel/plugin-syntax-import-meta" not installed
error "@babel/preset-env" not installed
error "@gitlab/at.js" not installed
error "@gitlab/svgs" not installed
error "@gitlab/ui" not installed
error "@gitlab/visual-review-tools" not installed
error "@rails/actioncable" not installed
error "@rails/ujs" not installed
error "@sourcegraph/code-host-integration" not installed
error "@toast-ui/editor" not installed
error "@toast-ui/vue-editor" not installed
error "ajv" not installed
error "apollo-cache-inmemory" not installed
error "apollo-client" not installed
error "apollo-link" not installed
error "apollo-link-batch-http" not installed
error "apollo-upload-client" not installed
error "autosize" not installed
error "aws-sdk" not installed
error "axios" not installed
error "babel-loader" not installed
error "babel-plugin-lodash" not installed
error "bootstrap" not installed
error "brace-expansion" not installed
error "cache-loader" not installed
error "clipboard" not installed
error "codemirror" not installed
error "codesandbox-api" not installed
error "compression-webpack-plugin" not installed
error "copy-webpack-plugin" not installed
error "core-js" not installed
error "cron-validator" not installed
error "cropper" not installed
error "css-loader" not installed
error "d3" not installed
error "d3-sankey" not installed
error "d3-scale" not installed
error "d3-selection" not installed
error "dateformat" not installed
error "deckar01-task_list" not installed
error "diff" not installed
error "document-register-element" not installed
error "dompurify" not installed
error "dropzone" not installed
error "editorconfig" not installed
error "emoji-regex" not installed
error "emoji-unicode-version" not installed
error "exports-loader" not installed
error "file-loader" not installed
error "font-awesome" not installed
error "fuzzaldrin-plus" not installed
error "glob" not installed
error "graphql" not installed
error "graphql-tag" not installed
error "immer" not installed
error "imports-loader" not installed
error "ipaddr.js" not installed
error "jed" not installed
error "jest-transform-graphql" not installed
error "jquery" not installed
error "jquery.caret" not installed
error "jquery.waitforimages" not installed
error "js-cookie" not installed
error "js-yaml" not installed
error "jszip" not installed
error "jszip-utils" not installed
error "katex" not installed
error "lodash" not installed
error "marked" not installed
error "mermaid" not installed
error "mersenne-twister" not installed
error "minimatch" not installed
error "miragejs" not installed
error "mock-apollo-client" not installed
error "monaco-editor-webpack-plugin" not installed
error "monaco-yaml" not installed
error "mousetrap" not installed
error "pdfjs-dist" not installed
error "pikaday" not installed
error "popper.js" not installed
error "prismjs" not installed
error "prosemirror-markdown" not installed
error "prosemirror-model" not installed
error "raphael" not installed
error "raw-loader" not installed
error "select2" not installed
error "smooshpack" not installed
error "sortablejs" not installed
error "sql.js" not installed
error "stickyfilljs" not installed
error "string-hash" not installed
error "style-loader" not installed
error "swagger-ui-dist" not installed
error "three" not installed
error "three-orbit-controls" not installed
error "three-stl-loader" not installed
error "timeago.js" not installed
error "tiptap" not installed
error "tiptap-commands" not installed
error "tiptap-extensions" not installed
error "tributejs" not installed
error "url-loader" not installed
error "uuid" not installed
error "visibilityjs" not installed
error "vue" not installed
error "vue-apollo" not installed
error "vue-loader" not installed
error "vue-router" not installed
error "vue-template-compiler" not installed
error "vue-virtual-scroll-list" not installed
error "vuedraggable" not installed
error "vuex" not installed
error "web-vitals" not installed
error "webpack" not installed
error "webpack-bundle-analyzer" not installed
error "webpack-cli" not installed
error "webpack-stats-plugin" not installed
error "worker-loader" not installed
error "xterm" not installed
error "@babel/plugin-transform-modules-commonjs" not installed
error "acorn" not installed
error "babel-plugin-dynamic-import-node" not installed
error "chalk" not installed
error "commander" not installed
error "postcss" not installed
error "eslint#@babel/code-frame" not installed
error "@babel/preset-env#@babel/compat-data" not installed
error "@babel/core#@babel/generator" not installed
error "babel-plugin-lodash#@babel/helper-module-imports" not installed
error "@babel/core#@babel/helper-module-transforms" not installed
error "babel-plugin-istanbul#@babel/helper-plugin-utils" not installed
error "@babel/plugin-transform-modules-commonjs#@babel/helper-simple-access" not installed
error "@babel/core#@babel/helpers" not installed
error "@babel/core#@babel/parser" not installed
error "@testing-library/dom#@babel/runtime" not installed
error "@gitlab/ui#@babel/standalone" not installed
error "@babel/core#@babel/template" not installed
error "@babel/core#@babel/traverse" not installed
error "babel-plugin-lodash#@babel/types" not installed
error "mermaid#@braintree/sanitize-url" not installed
error "@gitlab/ui#@gitlab/vue-toasted" not installed
error "miragejs#@miragejs/pretender-node-polyfill" not installed
error "@toast-ui/editor#@types/codemirror" not installed
error "@jest/types#@types/node" not installed
error "apollo-client#@types/zen-observable" not installed
error "vue-loader#@vue/component-compiler-utils" not installed
error "webpack#@webassemblyjs/ast" not installed
error "webpack#@webassemblyjs/helper-module-context" not installed
error "webpack#@webassemblyjs/wasm-edit" not installed
error "webpack#@webassemblyjs/wasm-parser" not installed
error "webpack-bundle-analyzer#acorn-walk" not installed
error "schema-utils#ajv" not installed
error "webpack#ajv" not installed
error "strip-ansi#ansi-regex" not installed
error "chalk#ansi-styles" not installed
error "apollo-link-batch-http#apollo-link-batch" not installed
error "js-yaml#argparse" not installed
error "micromatch#arr-diff" not installed
error "micromatch#array-unique" not installed
error "ws#async-limiter" not installed
error "brace-expansion#balanced-match" not installed
error "webpack-bundle-analyzer#bfj" not installed
error "loader-utils#big.js" not installed
error "karma#bluebird" not installed
error "karma#body-parser" not installed
error "@gitlab/ui#bootstrap-vue" not installed
error "micromatch#braces" not installed
error "@babel/preset-env#browserslist" not installed
error "cache-loader#buffer-json" not installed
error "aws-sdk#buffer" not installed
error "compression-webpack-plugin#cacache" not installed
error "cacache#chownr" not installed
error "webpack#chrome-trace-event" not installed
warning Optional dependency "prismjs#clipboard" not installed
error "ajv#co" not installed
error "smooshpack#codesandbox-import-utils" not installed
error "find-cache-dir#commondir" not installed
error "brace-expansion#concat-map" not installed
error "@babel/core#convert-source-map" not installed
error "@gitlab/ui#copy-to-clipboard" not installed
error "@babel/preset-env#core-js-compat" not installed
error "jszip#core-js" not installed
error "readable-stream#core-util-is" not installed
error "mermaid#crypto-random-string" not installed
error "postcss-selector-parser#cssesc" not installed
error "d3#d3-array" not installed
error "d3#d3-axis" not installed
error "d3#d3-brush" not installed
error "d3#d3-chord" not installed
error "d3#d3-collection" not installed
error "d3#d3-color" not installed
error "d3#d3-contour" not installed
error "d3#d3-dispatch" not installed
error "d3#d3-drag" not installed
error "d3#d3-dsv" not installed
error "d3#d3-ease" not installed
error "d3#d3-fetch" not installed
error "d3#d3-force" not installed
error "d3#d3-format" not installed
error "d3#d3-geo" not installed
error "d3#d3-hierarchy" not installed
error "d3#d3-interpolate" not installed
error "d3#d3-path" not installed
error "d3#d3-polygon" not installed
error "d3#d3-quadtree" not installed
error "d3#d3-random" not installed
error "d3#d3-scale-chromatic" not installed
error "d3#d3-shape" not installed
error "d3#d3-time-format" not installed
error "d3#d3-time" not installed
error "d3#d3-timer" not installed
error "d3#d3-transition" not installed
error "d3#d3-voronoi" not installed
error "d3#d3-zoom" not installed
error "mermaid#dagre-d3" not installed
error "mermaid#dagre" not installed
error "vue-template-compiler#de-indent" not installed
error "@babel/core#debug" not installed
error "yargs#decamelize" not installed
error "micromatch#define-property" not installed
error "@gitlab/ui#echarts" not installed
error "webpack-bundle-analyzer#ejs" not installed
error "loader-utils#emojis-list" not installed
error "pump#end-of-stream" not installed
error "mermaid#entity-decode" not installed
error "memory-fs#errno" not installed
error "jszip#es6-promise" not installed
error "webpack#eslint-scope" not installed
error "js-yaml#esprima" not installed
error "eslint-scope#esrecurse" not installed
error "eslint-scope#estraverse" not installed
error "eslint#esutils" not installed
error "raphael#eve-raphael" not installed
error "aws-sdk#events" not installed
error "webpack-bundle-analyzer#express" not installed
error "micromatch#extend-shallow" not installed
error "micromatch#extglob" not installed
error "apollo-upload-client#extract-files" not installed
error "cacache#figgy-pudding" not installed
error "webpack-bundle-analyzer#filesize" not installed
error "braces#fill-range" not installed
error "cache-loader#find-cache-dir" not installed
error "compression-webpack-plugin#find-cache-dir" not installed
error "pkg-dir#find-up" not installed
error "webpack-cli#findup-sync" not installed
error "axios#follow-redirects" not installed
error "micromatch#fragment-cache" not installed
error "glob#fs.realpath" not installed
error "@babel/core#gensync" not installed
error "global-modules#global-prefix" not installed
error "copy-webpack-plugin#globby" not installed
error "clipboard#good-listener" not installed
error "cacache#graceful-fs" not installed
error "mermaid#graphlib" not installed
error "webpack-bundle-analyzer#gzip-size" not installed
error "vue-loader#hash-sum" not installed
error "vue-template-compiler#he" not installed
error "@gitlab/ui#highlight.js" not installed
error "css-loader#icss-utils" not installed
error "aws-sdk#ieee754" not installed
error "eslint#imurmurhash" not installed
error "postcss-selector-parser#indexes-of" not installed
error "cacache#infer-owner" not installed
error "miragejs#inflected" not installed
error "glob#inflight" not installed
error "webpack-cli#interpret" not installed
error "@babel/preset-env#invariant" not installed
error "is-descriptor#is-accessor-descriptor" not installed
error "is-descriptor#is-data-descriptor" not installed
error "define-property#is-descriptor" not installed
error "is-glob#is-extglob" not installed
error "glob-parent#is-glob" not installed
error "execa#is-stream" not installed
error "which#isexe" not installed
error "graphql#iterall" not installed
error "aws-sdk#jmespath" not installed
error "@gitlab/ui#js-beautify" not installed
error "webpack#json-parse-better-errors" not installed
error "ajv#json-stable-stringify" not installed
error "@babel/core#json5" not installed
error "markdownlint-cli#jsonc-parser" not installed
error "is-number#kind-of" not installed
error "stylelint#leven" not installed
error "@babel/preset-env#levenary" not installed
error "jszip#lie" not installed
error "document-register-element#lightercollective" not installed
error "webpack#loader-runner" not installed
error "webpack-cli#loader-utils" not installed
error "find-up#locate-path" not installed
error "miragejs#lodash.assign" not installed
error "miragejs#lodash.camelcase" not installed
error "miragejs#lodash.clonedeep" not installed
error "miragejs#lodash.compact" not installed
error "miragejs#lodash.find" not installed
error "miragejs#lodash.flatten" not installed
error "miragejs#lodash.forin" not installed
error "miragejs#lodash.get" not installed
error "miragejs#lodash.has" not installed
error "miragejs#lodash.invokemap" not installed
error "miragejs#lodash.isempty" not installed
error "miragejs#lodash.isequal" not installed
error "miragejs#lodash.isfunction" not installed
error "miragejs#lodash.isinteger" not installed
error "miragejs#lodash.isplainobject" not installed
error "miragejs#lodash.lowerfirst" not installed
error "miragejs#lodash.map" not installed
error "miragejs#lodash.mapvalues" not installed
error "miragejs#lodash.pick" not installed
error "miragejs#lodash.snakecase" not installed
error "miragejs#lodash.uniq" not installed
error "miragejs#lodash.uniqby" not installed
error "miragejs#lodash.values" not installed
error "tiptap-extensions#lowlight" not installed
error "cacache#lru-cache" not installed
error "prosemirror-markdown#markdown-it" not installed
error "mermaid#minify" not installed
error "mkdirp#minimist" not installed
error "cacache#mississippi" not installed
error "mermaid#moment-mini" not installed
error "cacache#move-concurrently" not installed
error "debug#ms" not installed
error "micromatch#nanomatch" not installed
error "compression-webpack-plugin#neo-async" not installed
error "cross-spawn#nice-try" not installed
error "pdfjs-dist#node-ensure" not installed
error "eslint-import-resolver-webpack#node-libs-browser" not installed
error "execa#npm-run-path" not installed
error "babel-plugin-dynamic-import-node#object.assign" not installed
error "micromatch#object.pick" not installed
error "glob#once" not installed
error "webpack-bundle-analyzer#opener" not installed
error "apollo-cache-inmemory#optimism" not installed
error "prosemirror-model#orderedmap" not installed
error "execa#p-finally" not installed
error "p-limit#p-try" not installed
error "jszip#pako" not installed
error "glob-parent#path-dirname" not installed
error "glob#path-is-absolute" not installed
error "anymatch#picomatch" not installed
error "path-type#pify" not installed
error "make-dir#pify" not installed
error "babel-loader#pify" not installed
error "css-loader#postcss-modules-extract-imports" not installed
error "css-loader#postcss-modules-local-by-default" not installed
error "css-loader#postcss-modules-scope" not installed
error "css-loader#postcss-modules-values" not installed
error "miragejs#pretender" not installed
error "monaco-yaml#prettier" not installed
error "readable-stream#process-nextick-args" not installed
error "cacache#promise-inflight" not installed
error "tiptap#prosemirror-commands" not installed
error "tiptap#prosemirror-dropcursor" not installed
error "tiptap#prosemirror-gapcursor" not installed
error "tiptap-extensions#prosemirror-history" not installed
error "tiptap#prosemirror-inputrules" not installed
error "tiptap#prosemirror-keymap" not installed
error "tiptap-commands#prosemirror-schema-list" not installed
error "tiptap#prosemirror-state" not installed
error "tiptap-extensions#prosemirror-tables" not installed
error "tiptap#prosemirror-view" not installed
error "lru-cache#pseudomap" not installed
error "url#punycode" not installed
error "url#querystring" not installed
error "karma#range-parser" not installed
error "jszip#readable-stream" not installed
error "micromatch#regex-not" not installed
error "yargs#require-directory" not installed
error "babel-plugin-lodash#require-package-name" not installed
error "@gitlab/ui#resize-observer-polyfill" not installed
error "import-local#resolve-cwd" not installed
error "eslint-import-resolver-webpack#resolve" not installed
error "karma#safe-buffer" not installed
error "aws-sdk#sax" not installed
error "cache-loader#schema-utils" not installed
error "file-loader#schema-utils" not installed
error "raw-loader#schema-utils" not installed
error "url-loader#schema-utils" not installed
error "compression-webpack-plugin#schema-utils" not installed
error "style-loader#schema-utils" not installed
error "mermaid#scope-css" not installed
error "clipboard#select" not installed
error "vue-apollo#serialize-javascript" not installed
error "yargs#set-blocking" not installed
error "cross-spawn#shebang-command" not installed
error "editorconfig#sigmund" not installed
error "execa#signal-exit" not installed
error "micromatch#snapdragon" not installed
error "exports-loader#source-map" not installed
error "@babel/core#source-map" not installed
error "cacache#ssri" not installed
error "cliui#string-width" not installed
error "execa#strip-eof" not installed
error "webpack-cli#supports-color" not installed
error "chalk#supports-color" not installed
error "postcss#supports-color" not installed
error "apollo-client#symbol-observable" not installed
error "vue-apollo#throttle-debounce" not installed
error "clipboard#tiny-emitter" not installed
error "tiptap#tiptap-utils" not installed
error "micromatch#to-regex" not installed
error "http-errors#toidentifier" not installed
error "apollo-cache-inmemory#ts-invariant" not installed
error "apollo-cache-inmemory#tslib" not installed
error "postcss-selector-parser#uniq" not installed
error "cacache#unique-filename" not installed
error "@gitlab/ui#url-search-params-polyfill" not installed
error "aws-sdk#url" not installed
error "readable-stream#util-deprecate" not installed
error "aws-sdk#uuid" not installed
error "webpack-cli#v8-compile-cache" not installed
error "monaco-yaml#vscode-json-languageservice" not installed
error "monaco-yaml#vscode-languageserver" not installed
error "vue-loader#vue-hot-reload-api" not installed
error "@gitlab/ui#vue-runtime-helpers" not installed
error "vue-loader#vue-style-loader" not installed
error "webpack#watchpack" not installed
error "copy-webpack-plugin#webpack-log" not installed
error "compression-webpack-plugin#webpack-sources" not installed
error "yargs#which-module" not installed
error "cliui#wrap-ansi" not installed
error "webpack-bundle-analyzer#ws" not installed
error "aws-sdk#xml2js" not installed
error "cacache#y18n" not installed
error "lru-cache#yallist" not installed
error "webpack-cli#yargs" not installed
error "apollo-link#zen-observable-ts" not installed
error "apollo-client#zen-observable" not installed
error "@babel/preset-env#@babel/helper-compilation-targets" not installed
error "@babel/plugin-proposal-class-properties#@babel/helper-create-class-features-plugin" not installed
error "@babel/preset-env#@babel/plugin-proposal-async-generator-functions" not installed
error "@babel/preset-env#@babel/plugin-proposal-dynamic-import" not installed
error "@babel/preset-env#@babel/plugin-proposal-nullish-coalescing-operator" not installed
error "@babel/preset-env#@babel/plugin-proposal-numeric-separator" not installed
error "@babel/preset-env#@babel/plugin-proposal-object-rest-spread" not installed
error "@babel/preset-env#@babel/plugin-proposal-optional-catch-binding" not installed
error "@babel/preset-env#@babel/plugin-proposal-optional-chaining" not installed
error "@babel/preset-env#@babel/plugin-proposal-unicode-property-regex" not installed
error "@babel/preset-env#@babel/plugin-syntax-async-generators" not installed
error "@babel/preset-env#@babel/plugin-syntax-class-properties" not installed
error "@babel/preset-env#@babel/plugin-syntax-dynamic-import" not installed
error "@babel/plugin-proposal-json-strings#@babel/plugin-syntax-json-strings" not installed
error "@babel/preset-env#@babel/plugin-syntax-nullish-coalescing-operator" not installed
error "@babel/preset-env#@babel/plugin-syntax-numeric-separator" not installed
error "@babel/preset-env#@babel/plugin-syntax-object-rest-spread" not installed
error "@babel/preset-env#@babel/plugin-syntax-optional-catch-binding" not installed
error "@babel/preset-env#@babel/plugin-syntax-optional-chaining" not installed
error "@babel/preset-env#@babel/plugin-syntax-top-level-await" not installed
error "@babel/preset-env#@babel/plugin-transform-arrow-functions" not installed
error "@babel/preset-env#@babel/plugin-transform-async-to-generator" not installed
error "@babel/preset-env#@babel/plugin-transform-block-scoped-functions" not installed
error "@babel/preset-env#@babel/plugin-transform-block-scoping" not installed
error "@babel/preset-env#@babel/plugin-transform-classes" not installed
error "@babel/preset-env#@babel/plugin-transform-computed-properties" not installed
error "@babel/preset-env#@babel/plugin-transform-destructuring" not installed
error "@babel/preset-env#@babel/plugin-transform-dotall-regex" not installed
error "@babel/preset-env#@babel/plugin-transform-duplicate-keys" not installed
error "@babel/preset-env#@babel/plugin-transform-exponentiation-operator" not installed
error "@babel/preset-env#@babel/plugin-transform-for-of" not installed
error "@babel/preset-env#@babel/plugin-transform-function-name" not installed
error "@babel/preset-env#@babel/plugin-transform-literals" not installed
error "@babel/preset-env#@babel/plugin-transform-member-expression-literals" not installed
error "@babel/preset-env#@babel/plugin-transform-modules-amd" not installed
error "@babel/preset-env#@babel/plugin-transform-modules-systemjs" not installed
error "@babel/preset-env#@babel/plugin-transform-modules-umd" not installed
error "@babel/preset-env#@babel/plugin-transform-named-capturing-groups-regex" not installed
error "@babel/preset-env#@babel/plugin-transform-new-target" not installed
error "@babel/preset-env#@babel/plugin-transform-object-super" not installed
error "@babel/preset-env#@babel/plugin-transform-parameters" not installed
error "@babel/preset-env#@babel/plugin-transform-property-literals" not installed
error "@babel/preset-env#@babel/plugin-transform-regenerator" not installed
error "@babel/preset-env#@babel/plugin-transform-reserved-words" not installed
error "@babel/preset-env#@babel/plugin-transform-shorthand-properties" not installed
error "@babel/preset-env#@babel/plugin-transform-spread" not installed
error "@babel/preset-env#@babel/plugin-transform-sticky-regex" not installed
error "@babel/preset-env#@babel/plugin-transform-template-literals" not installed
error "@babel/preset-env#@babel/plugin-transform-typeof-symbol" not installed
error "@babel/preset-env#@babel/plugin-transform-unicode-escapes" not installed
error "@babel/preset-env#@babel/plugin-transform-unicode-regex" not installed
error "@babel/preset-env#@babel/preset-modules" not installed
error "schema-utils#ajv-errors" not installed
error "schema-utils#ajv-keywords" not installed
error "webpack#ajv-keywords" not installed
error "apollo-client#apollo-cache" not installed
error "apollo-upload-client#apollo-link-http-common" not installed
error "apollo-client#apollo-utilities" not installed
error "@gitlab/ui#portal-vue" not installed
error "tiptap-extensions#prosemirror-utils" not installed
error "worker-loader#schema-utils" not installed
error "webpack#terser-webpack-plugin" not installed
error "@babel/plugin-transform-classes#@babel/helper-annotate-as-pure" not installed
error "@babel/plugin-transform-exponentiation-operator#@babel/helper-builder-binary-assignment-operator-visitor" not installed
error "@babel/plugin-transform-classes#@babel/helper-define-map" not installed
error "@babel/helper-create-class-features-plugin#@babel/helper-function-name" not installed
error "@babel/plugin-transform-parameters#@babel/helper-get-function-arity" not installed
error "@babel/plugin-transform-modules-systemjs#@babel/helper-hoist-variables" not installed
error "@babel/helper-create-class-features-plugin#@babel/helper-member-expression-to-functions" not installed
error "@babel/helper-create-class-features-plugin#@babel/helper-optimise-call-expression" not installed
error "@babel/plugin-transform-sticky-regex#@babel/helper-regex" not installed
error "@babel/plugin-proposal-async-generator-functions#@babel/helper-remap-async-to-generator" not installed
error "@babel/helper-create-class-features-plugin#@babel/helper-replace-supers" not installed
error "@babel/helper-create-class-features-plugin#@babel/helper-split-export-declaration" not installed
error "@babel/types#@babel/helper-validator-identifier" not installed
error "@babel/code-frame#@babel/highlight" not installed
error "bootstrap-vue#@nuxt/opencollective" not installed
error "@types/codemirror#@types/tern" not installed
error "@webassemblyjs/wasm-parser#@webassemblyjs/helper-api-error" not installed
error "@webassemblyjs/wasm-edit#@webassemblyjs/helper-buffer" not installed
error "@webassemblyjs/ast#@webassemblyjs/helper-wasm-bytecode" not installed
error "@webassemblyjs/wasm-edit#@webassemblyjs/helper-wasm-section" not installed
error "@webassemblyjs/wasm-parser#@webassemblyjs/ieee754" not installed
error "@webassemblyjs/wasm-parser#@webassemblyjs/leb128" not installed
error "@webassemblyjs/wasm-parser#@webassemblyjs/utf8" not installed
error "@webassemblyjs/wasm-edit#@webassemblyjs/wasm-gen" not installed
error "@webassemblyjs/wasm-edit#@webassemblyjs/wasm-opt" not installed
error "@webassemblyjs/ast#@webassemblyjs/wast-parser" not installed
error "@webassemblyjs/wasm-edit#@webassemblyjs/wast-printer" not installed
error "optimism#@wry/context" not installed
error "apollo-utilities#@wry/equality" not installed
error "serve-index#accepts" not installed
error "worker-loader#schema-utils#ajv" not installed
error "cache-loader#schema-utils#ajv" not installed
error "file-loader#schema-utils#ajv" not installed
error "raw-loader#schema-utils#ajv" not installed
error "url-loader#schema-utils#ajv" not installed
error "compression-webpack-plugin#schema-utils#ajv" not installed
error "style-loader#schema-utils#ajv" not installed
error "webpack-log#ansi-colors" not installed
error "wrap-ansi#ansi-styles" not installed
error "move-concurrently#aproba" not installed
error "micromatch#braces#arr-flatten" not installed
error "express#array-flatten" not installed
error "globby#array-union" not installed
error "node-libs-browser#assert" not installed
error "micromatch#extend-shallow#assign-symbols" not installed
error "buffer#base64-js" not installed
error "snapdragon#base" not installed
error "node-libs-browser#browserify-zlib" not installed
error "ts-jest#buffer-from" not installed
error "autoprefixer#caniuse-lite" not installed
error "bfj#check-types" not installed
error "minify#clean-css" not installed
error "codesandbox-import-utils#codesandbox-import-util-types" not installed
error "chalk#ansi-styles#color-convert" not installed
error "mississippi#concat-stream" not installed
error "js-beautify#config-chain" not installed
error "node-libs-browser#console-browserify" not installed
error "@vue/component-compiler-utils#consolidate" not installed
error "node-libs-browser#constants-browserify" not installed
error "express#content-disposition" not installed
error "body-parser#content-type" not installed
error "express#cookie-signature" not installed
error "express#cookie" not installed
error "move-concurrently#copy-concurrently" not installed
error "node-libs-browser#crypto-browserify" not installed
error "minify#css-b64-images" not installed
error "@babel/traverse#debug" not installed
error "minify#debug" not installed
error "object.assign#define-properties" not installed
error "extglob#define-property" not installed
error "nanomatch#define-property" not installed
error "to-regex#define-property" not installed
error "good-listener#delegate" not installed
error "findup-sync#detect-file" not installed
error "globby#dir-glob" not installed
error "node-libs-browser#domain-browser" not installed
error "gzip-size#duplexer" not installed
error "mississippi#duplexify" not installed
error "browserslist#electron-to-chromium" not installed
error "webpack-cli#loader-utils#emojis-list" not installed
error "express#encodeurl" not installed
error "express#escape-html" not installed
error "scope-css#escaper" not installed
error "express#etag" not installed
error "node-libs-browser#events" not installed
error "extglob#expand-brackets" not installed
error "micromatch#braces#extend-shallow" not installed
error "nanomatch#extend-shallow" not installed
error "regex-not#extend-shallow" not installed
error "to-regex#extend-shallow" not installed
error "pretender#fake-xml-http-request" not installed
error "schema-utils#ajv#fast-deep-equal" not installed
error "ts-jest#fast-json-stable-stringify" not installed
error "lowlight#fault" not installed
error "micromatch#braces#fill-range" not installed
error "express#finalhandler" not installed
error "webpack-cli#yargs#find-up" not installed
error "mississippi#flush-write-stream" not installed
error "express#fresh" not installed
error "mississippi#from2" not installed
error "compression-webpack-plugin#cacache#fs-minipass" not installed
error "move-concurrently#fs-write-stream-atomic" not installed
error "has#function-bind" not installed
error "chokidar#glob-parent" not installed
error "object.assign#has-symbols" not installed
error "bfj#hoopy" not installed
error "minify#html-minifier" not installed
error "node-libs-browser#https-browserify" not installed
error "d3-dsv#iconv-lite" not installed
error "postcss-modules-values#icss-replace-symbols" not installed
error "globby#ignore" not installed
error "lie#immediate" not installed
error "global-prefix#ini" not installed
error "define-property#is-descriptor#is-accessor-descriptor" not installed
error "chokidar#is-binary-path" not installed
error "define-property#is-descriptor#is-data-descriptor" not installed
error "micromatch#extend-shallow#is-extendable" not installed
error "clone-deep#is-plain-object" not installed
error "nanomatch#is-windows" not installed
error "codesandbox-import-utils#istextorbinary" not installed
error "@babel/generator#jsesc" not installed
error "schema-utils#ajv#json-schema-traverse" not installed
error "json-stable-stringify#jsonify" not installed
error "define-property#is-descriptor#kind-of" not installed
error "markdown-it#linkify-it" not installed
error "pkg-dir#find-up#locate-path" not installed
error "invariant#loose-envify" not installed
error "compression-webpack-plugin#cacache#lru-cache" not installed
error "codesandbox-import-utils#lz-string" not installed
error "cache-loader#find-cache-dir#make-dir" not installed
error "compression-webpack-plugin#find-cache-dir#make-dir" not installed
error "@webassemblyjs/helper-module-context#mamacro" not installed
error "fragment-cache#map-cache" not installed
error "markdown-it#mdurl" not installed
error "express#merge-descriptors" not installed
error "@vue/component-compiler-utils#merge-source-map" not installed
error "express#methods" not installed
error "serve-index#mime-types" not installed
error "compression-webpack-plugin#cacache#minipass-collect" not installed
error "compression-webpack-plugin#cacache#minipass-flush" not installed
error "compression-webpack-plugin#cacache#minipass-pipeline" not installed
error "compression-webpack-plugin#cacache#minipass" not installed
error "js-beautify#mkdirp" not installed
error "browserslist#node-releases" not installed
error "js-beautify#nopt" not installed
error "object.assign#object-keys" not installed
error "body-parser#on-finished" not installed
error "node-libs-browser#os-browserify" not installed
error "webpack-dev-server#yargs#os-locale" not installed
error "tmp#os-tmpdir" not installed
error "node-gyp#osenv" not installed
error "locate-path#p-locate" not installed
error "compression-webpack-plugin#cacache#p-map" not installed
error "mississippi#parallel-transform" not installed
error "connect#parseurl" not installed
error "node-libs-browser#path-browserify" not installed
error "resolve#path-parse" not installed
error "express#path-to-regexp" not installed
error "globby#pify" not installed
error "gzip-size#pify" not installed
error "cache-loader#find-cache-dir#pkg-dir" not installed
error "compression-webpack-plugin#find-cache-dir#pkg-dir" not installed
error "browserslist#pkg-up" not installed
error "@vue/component-compiler-utils#prettier" not installed
error "jszip#readable-stream#process-nextick-args" not installed
error "global#process" not installed
error "prosemirror-commands#prosemirror-transform" not installed
error "express#proxy-addr" not installed
error "errno#prr" not installed
error "mississippi#pumpify" not installed
error "aws-sdk#url#punycode" not installed
error "node-libs-browser#punycode" not installed
error "node-libs-browser#querystring-es3" not installed
error "body-parser#raw-body" not installed
error "chokidar#readdirp" not installed
error "@babel/runtime#regenerator-runtime" not installed
error "@babel/plugin-transform-regenerator#regenerator-transform" not installed
error "micromatch#braces#repeat-element" not installed
error "findup-sync#resolve-dir" not installed
error "resolve-cwd#resolve-from" not installed
error "prosemirror-history#rope-sequence" not installed
error "pretender#route-recognizer" not installed
error "move-concurrently#run-queue" not installed
error "d3-dsv#rw" not installed
error "regex-not#safe-regex" not installed
error "core-js-compat#semver" not installed
error "express#send" not installed
error "express#serve-static" not installed
error "shebang-command#shebang-regex" not installed
error "globby#slash" not installed
error "scope-css#slugify" not installed
error "micromatch#braces#snapdragon-node" not installed
error "webpack-sources#source-list-map" not installed
error "snapdragon#source-map-resolve" not installed
error "@babel/generator#source-map" not installed
error "snapdragon#source-map" not installed
error "micromatch#braces#split-string" not installed
error "argparse#sprintf-js" not installed
error "compression-webpack-plugin#cacache#ssri" not installed
error "node-libs-browser#stream-browserify" not installed
error "mississippi#stream-each" not installed
error "node-libs-browser#stream-http" not installed
error "wrap-ansi#string-width" not installed
error "webpack-cli#yargs#string-width" not installed
error "jszip#readable-stream#string_decoder" not installed
error "scope-css#strip-css-comments" not installed
error "minify#terser" not installed
error "mississippi#through2" not installed
error "node-libs-browser#timers-browserify" not installed
error "@babel/types#to-fast-properties" not installed
error "fill-range#to-regex-range" not installed
error "copy-to-clipboard#toggle-selection" not installed
error "minify#try-catch" not installed
error "minify#try-to-catch" not installed
error "bfj#tryer" not installed
error "node-libs-browser#tty-browserify" not installed
error "crypto-random-string#type-fest" not installed
error "body-parser#type-is" not installed
error "markdown-it#uc.micro" not installed
error "unique-filename#unique-slug" not installed
error "schema-utils#ajv#uri-js" not installed
error "snapdragon#use" not installed
error "node-libs-browser#util" not installed
error "connect#utils-merge" not installed
error "webpack-log#uuid" not installed
error "compression#vary" not installed
error "node-libs-browser#vm-browserify" not installed
error "vscode-languageserver#vscode-languageserver-protocol" not installed
error "vscode-json-languageservice#vscode-languageserver-textdocument" not installed
error "vscode-json-languageservice#vscode-languageserver-types" not installed
error "vscode-json-languageservice#vscode-nls" not installed
error "vscode-languageserver#vscode-uri" not installed
error "bootstrap-vue#vue-functional-data-merge" not installed
error "@vue/component-compiler-utils#vue-template-es2015-compiler" not installed
error "prosemirror-keymap#w3c-keyname" not installed
warning Optional dependency "watchpack#watchpack-chokidar2" not installed
error "terser-webpack-plugin#worker-farm" not installed
error "inflight#wrappy" not installed
error "xml2js#xmlbuilder" not installed
error "cacache#lru-cache#yallist" not installed
error "echarts#zrender" not installed
error "@babel/plugin-proposal-unicode-property-regex#@babel/helper-create-regexp-features-plugin" not installed
error "worker-loader#schema-utils#ajv-keywords" not installed
error "cache-loader#schema-utils#ajv-keywords" not installed
error "file-loader#schema-utils#ajv-keywords" not installed
error "raw-loader#schema-utils#ajv-keywords" not installed
error "url-loader#schema-utils#ajv-keywords" not installed
error "compression-webpack-plugin#schema-utils#ajv-keywords" not installed
error "style-loader#schema-utils#ajv-keywords" not installed
error "@babel/helper-builder-binary-assignment-operator-visitor#@babel/helper-explode-assignable-expression" not installed
error "@babel/helper-remap-async-to-generator#@babel/helper-wrap-function" not installed
error "@types/tern#@types/estree" not installed
error "@webassemblyjs/wast-parser#@webassemblyjs/floating-point-hex-parser" not installed
error "@webassemblyjs/wast-parser#@webassemblyjs/helper-code-frame" not installed
error "@webassemblyjs/wast-parser#@webassemblyjs/helper-fsm" not installed
error "@webassemblyjs/ieee754#@xtuc/ieee754" not installed
error "@webassemblyjs/leb128#@xtuc/long" not installed
error "nopt#abbrev" not installed
error "compression-webpack-plugin#p-map#aggregate-error" not installed
error "array-union#array-uniq" not installed
error "source-map-resolve#atob" not installed
error "is-binary-path#binary-extensions" not installed
error "istextorbinary#binaryextensions" not installed
error "crypto-browserify#browserify-cipher" not installed
error "crypto-browserify#browserify-sign" not installed
error "stream-http#builtin-status-codes" not installed
error "base#cache-base" not installed
error "html-minifier#camel-case" not installed
error "base#class-utils" not installed
error "wrap-ansi#ansi-styles#color-convert" not installed
error "chalk#color-convert#color-name" not installed
error "socket.io-client#component-emitter" not installed
error "@nuxt/opencollective#consola" not installed
error "crypto-browserify#create-ecdh" not installed
error "crypto-browserify#create-hash" not installed
error "crypto-browserify#create-hmac" not installed
error "parallel-transform#cyclist" not installed
error "console-browserify#date-now" not installed
error "source-map-resolve#decode-uri-component" not installed
error "base#define-property" not installed
error "snapdragon-node#define-property" not installed
error "send#destroy" not installed
error "crypto-browserify#diffie-hellman" not installed
error "istextorbinary#editions" not installed
error "on-finished#ee-first" not installed
error "resolve-dir#expand-tilde" not installed
error "micromatch#fill-range#extend-shallow" not installed
error "split-string#extend-shallow" not installed
error "cache-loader#pkg-dir#find-up" not installed
error "compression-webpack-plugin#pkg-dir#find-up" not installed
error "fault#format" not installed
error "proxy-addr#forwarded" not installed
error "resolve-dir#global-modules" not installed
error "copy-concurrently#iferr" not installed
error "proxy-addr#ipaddr.js" not installed
error "micromatch#braces#extend-shallow#is-extendable" not installed
error "nanomatch#extend-shallow#is-extendable" not installed
error "regex-not#extend-shallow#is-extendable" not installed
error "to-regex#extend-shallow#is-extendable" not installed
error "to-regex-range#is-number" not installed
error "strip-css-comments#is-regexp" not installed
error "loose-envify#js-tokens" not installed
error "define-property#is-accessor-descriptor#kind-of" not installed
error "define-property#is-data-descriptor#kind-of" not installed
error "os-locale#lcid" not installed
error "webpack-cli#find-up#locate-path" not installed
error "type-is#media-typer" not installed
error "os-locale#mem" not installed
error "mime-types#mime-db" not installed
error "send#mime" not installed
error "base#mixin-deep" not installed
error "accepts#negotiator" not installed
error "@nuxt/opencollective#node-fetch" not installed
error "osenv#os-homedir" not installed
error "p-locate#p-limit" not installed
error "pkg-dir#locate-path#p-locate" not installed
error "html-minifier#param-case" not installed
error "base#pascalcase" not installed
error "crypto-browserify#pbkdf2" not installed
error "expand-brackets#posix-character-classes" not installed
error "regenerator-transform#private" not installed
error "config-chain#proto-list" not installed
error "crypto-browserify#public-encrypt" not installed
error "pumpify#pump" not installed
error "crypto-browserify#randombytes" not installed
error "crypto-browserify#randomfill" not installed
error "@babel/helper-create-regexp-features-plugin#regexpu-core" not installed
error "html-minifier#relateurl" not installed
error "micromatch#fill-range#repeat-string" not installed
error "source-map-resolve#resolve-url" not installed
error "safe-regex#ret" not installed
error "iconv-lite#safer-buffer" not installed
error "cache-loader#make-dir#semver" not installed
error "compression-webpack-plugin#make-dir#semver" not installed
error "timers-browserify#setimmediate" not installed
error "snapdragon-node#snapdragon-util" not installed
error "jest-runner#source-map-support" not installed
error "source-map-resolve#source-map-url" not installed
error "duplexify#stream-shift" not installed
error "istextorbinary#textextensions" not installed
error "stream-http#to-arraybuffer" not installed
error "micromatch#fill-range#to-regex-range" not installed
error "concat-stream#typedarray" not installed
error "html-minifier#uglify-js" not installed
error "raw-body#unpipe" not installed
error "css#urix" not installed
error "assert#util" not installed
error "vscode-languageserver-protocol#vscode-jsonrpc" not installed
error "vscode-languageserver-protocol#vscode-languageserver-types" not installed
error "stream-http#xtend" not installed
error "compression-webpack-plugin#lru-cache#yallist" not installed
error "minipass#yallist" not installed
error "class-utils#arr-union" not installed
error "create-ecdh#bn.js" not installed
error "browserify-cipher#browserify-aes" not installed
error "browserify-cipher#browserify-des" not installed
error "browserify-sign#browserify-rsa" not installed
error "create-hash#cipher-base" not installed
error "aggregate-error#clean-stack" not installed
error "cache-base#collection-visit" not installed
error "wrap-ansi#color-convert#color-name" not installed
error "browserify-sign#elliptic" not installed
error "browserify-cipher#evp_bytestokey" not installed
error "mixin-deep#for-in" not installed
error "cache-base#get-value" not installed
error "resolve-dir#global-modules#global-prefix" not installed
error "cache-base#has-value" not installed
error "expand-tilde#homedir-polyfill" not installed
error "aggregate-error#indent-string" not installed
error "assert#util#inherits" not installed
error "lcid#invert-kv" not installed
error "micromatch#fill-range#extend-shallow#is-extendable" not installed
error "split-string#extend-shallow#is-extendable" not installed
error "mixin-deep#is-extendable" not installed
error "snapdragon-util#kind-of" not installed
error "cache-loader#find-up#locate-path" not installed
error "compression-webpack-plugin#find-up#locate-path" not installed
error "mem#map-age-cleaner" not installed
error "diffie-hellman#miller-rabin" not installed
error "mem#mimic-fn" not installed
error "wbuf#minimalistic-assert" not installed
error "camel-case#no-case" not installed
error "mem#p-is-promise" not installed
error "webpack-cli#locate-path#p-locate" not installed
error "p-locate#p-limit#p-try" not installed
error "browserify-sign#parse-asn1" not installed
error "cache-loader#find-up#path-exists" not installed
error "compression-webpack-plugin#find-up#path-exists" not installed
error "regexpu-core#regenerate-unicode-properties" not installed
error "regexpu-core#regenerate" not installed
error "regexpu-core#regjsgen" not installed
error "regexpu-core#regjsparser" not installed
error "create-hash#ripemd160" not installed
error "cache-base#set-value" not installed
error "create-hash#sha.js" not installed
error "class-utils#static-extend" not installed
error "cache-base#to-object-path" not installed
error "regexpu-core#unicode-match-property-ecmascript" not installed
error "regexpu-core#unicode-match-property-value-ecmascript" not installed
error "cache-base#union-value" not installed
error "cache-base#unset-value" not installed
error "camel-case#upper-case" not installed
error "parse-asn1#asn1.js" not installed
error "elliptic#brorand" not installed
error "browserify-aes#buffer-xor" not installed
error "browserify-des#des.js" not installed
error "unset-value#has-value" not installed
error "has-value#has-values" not installed
error "ripemd160#hash-base" not installed
error "elliptic#hash.js" not installed
error "elliptic#hmac-drbg" not installed
error "regjsparser#jsesc" not installed
error "to-object-path#kind-of" not installed
error "no-case#lower-case" not installed
error "col

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with the supplied Docker Compose configuration and the 13.5.4 container startup output, focusing on the migration stage where Rails recompiles assets and Yarn cannot install packages. Reproduce the upgrade from 13.5.3, isolate the asset-installation failure, and verify that the container completes migration successfully.

Written by the indexing model from the issue text.

Assessment

Tech stack
docker, postgresql, rails
Domain
build-system, infrastructure
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
20/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.