Использование Font Awesome Pro с Google App Engine - PullRequest
0 голосов
/ 11 февраля 2020

Как заставить Font Awesome Pro работать на Google App Engine в стандартной среде?

Я включил файл .npmr c с правильными настройками реестра и токеном аутентификации:

@fortawesome:registry=https://npm.fontawesome.com/
//npm.fontawesome.com/:_authToken=XXXXXXXXXXXXXXXX

Однако после развертывания кода я получаю следующее:

Step #1 - "builder": npm ERR! code E404
Step #1 - "builder": npm ERR! 404 Not Found - GET https://registry.npmjs.org/@fortawesome%2ffontawesome-pro - Not found
Step #1 - "builder": npm ERR! 404 
Step #1 - "builder": npm ERR! 404  '@fortawesome/fontawesome-pro@^5.12.1' is not in the npm registry.
Step #1 - "builder": npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
Step #1 - "builder": npm ERR! 404 It was specified as a dependency of 'workspace'
Step #1 - "builder": npm ERR! 404 
Step #1 - "builder": npm ERR! 404 Note that you can also install from a
Step #1 - "builder": npm ERR! 404 tarball, folder, http url, or git url.
Step #1 - "builder": 
Step #1 - "builder": npm ERR! A complete log of this run can be found in:
Step #1 - "builder": npm ERR!     /builder/home/.npm/_logs/2020-02-10T16_36_28_563Z-debug.log
Step #1 - "builder": 
Step #1 - "builder": ERROR    error: `gen_package_lock` returned code: 1
Step #1 - "builder": INFO     gen_package_lock took 13 seconds
Step #1 - "builder": INFO     builder initialization took 13 seconds
Step #1 - "builder": INFO     full build took 13 seconds
Step #1 - "builder": ERROR    `gen_package_lock` had stderr output:
Step #1 - "builder": npm WARN deprecated core-js@2.6.11: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.
Step #1 - "builder": npm ERR! code E404
Step #1 - "builder": npm ERR! 404 Not Found - GET https://registry.npmjs.org/@fortawesome%2ffontawesome-pro - Not found
Step #1 - "builder": npm ERR! 404 
Step #1 - "builder": npm ERR! 404  '@fortawesome/fontawesome-pro@^5.12.1' is not in the npm registry.
Step #1 - "builder": npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
Step #1 - "builder": npm ERR! 404 It was specified as a dependency of 'workspace'
Step #1 - "builder": npm ERR! 404 
Step #1 - "builder": npm ERR! 404 Note that you can also install from a
Step #1 - "builder": npm ERR! 404 tarball, folder, http url, or git url.
Step #1 - "builder": 

По-видимому, он не распознает .npmr c, поскольку конечная точка URL все еще указывает на https://registry.npmjs.org . Любой совет?

1 Ответ

0 голосов
/ 17 февраля 2020

Обнаружено, что это из-за моего файла .gcloudignore. Мне нужно исключить игнорирование файла .npmr c.

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