Ошибка Bundle / Node / Web Pack при создании нового приложения rails - PullRequest
0 голосов
/ 15 апреля 2020

Доброе утро,

Я пытаюсь сгенерировать новое приложение rails, но столкнулся с целой кучей ошибок. Кажется, что он связан с веб-упаковщиком и / или узлом.

  • Я попытался удалить узел и веб-упаковщик и переустановить.
  • Я попытался загрузить node.js снова.
  • Я пытался ; запустите `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java, который не работает как gemfile, не может быть найден.
  • Я пробовал https://github.com/lydell/resolve-url#deprecated
  • Я прошел через различные темы по этому поводу, но, кажется, ничто не решает проблему

Я новый кодировщик, любые советы будут оценены. Я использую macOS Catalina 10.15.4

The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.

warning @rails/webpacker > node-sass > request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
warning @rails/webpacker > node-sass > node-gyp > request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
warning @rails/webpacker > webpack > micromatch > snapdragon > source-map-resolve > resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
warning @rails/webpacker > webpack > micromatch > snapdragon > source-map-resolve > urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
Exit code: 1
Command: node-gyp rebuild
Arguments: 
Directory: /Users/gemmag/code/gemmage3/rails-mister-cocktail-2/node_modules/fsevents
Output:
gyp info it worked if it ends with ok
gyp info using node-gyp@5.1.0
gyp info using node@12.16.2 | darwin | x64
gyp info find Python using Python version 2.7.16 found at \"/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python\"
gyp http GET https://nodejs.org/download/release/v12.16.2/node-v12.16.2-headers.tar.gz
gyp http 200 https://nodejs.org/download/release/v12.16.2/node-v12.16.2-headers.tar.gz
gyp http GET https://nodejs.org/download/release/v12.16.2/SHASUMS256.txt
gyp http 200 https://nodejs.org/download/release/v12.16.2/SHASUMS256.txt
gyp info spawn /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
gyp info spawn args [
gyp info spawn args   '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
gyp info spawn args   'binding.gyp',
gyp info spawn args   '-f',
gyp info spawn args   'make',
gyp info spawn args   '-I',
gyp info spawn args   '/Users/gemmag/code/gemmage3/rails-mister-cocktail-2/node_modules/fsevents/build/config.gypi',
gyp info spawn args   '-I',
gyp info spawn args   '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
gyp info spawn args   '-I',
gyp info spawn args   '/Users/gemmag/Library/Caches/node-gyp/12.16.2/include/node/common.gypi',
gyp info spawn args   '-Dlibrary=shared_library',
gyp info spawn args   '-Dvisibility=default',
gyp info spawn args   '-Dnode_root_dir=/Users/gemmag/Library/Caches/node-gyp/12.16.2',
gyp info spawn args   '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
gyp info spawn args   '-Dnode_lib_file=/Users/gemmag/Library/Caches/node-gyp/12.16.2/<(target_arch)/node.lib',
gyp info spawn args   '-Dmodule_root_dir=/Users/gemmag/code/gemmage3/rails-mister-cocktail-2/node_modules/fsevents',
gyp info spawn args   '-Dnode_engine=v8',
gyp info spawn args   '--depth=.',
gyp info spawn args   '--no-parallel',
gyp info spawn args   '--generator-output',
gyp info spawn args   'build',
gyp info spawn args   '-Goutput_dir=.'
gyp info spawn args ]
No receipt for 'com.apple.pkg.CLTools_Executables' found at '/'.

No receipt for 'com.apple.pkg.DeveloperToolsCLILeo' found at '/'.

No receipt for 'com.apple.pkg.DeveloperToolsCLI' found at '/'.

gyp: No Xcode or CLT version detected!

Ответы [ 2 ]

0 голосов
/ 16 апреля 2020

Я попытался запустить xcode-select --install

Возвращено:

> xcode-select: error: command line tools are already installed, use "Software Update" to install updates.

Затем я попытался softwareupdate --list

, что вернуло:

Finding available software
No new software available.
0 голосов
/ 15 апреля 2020

Похоже, вам не хватает инструментов командной строки xcode.

Попробуйте запустить xcode-select --install first

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...