У меня есть узел, установленный локально в «узле», в моей папке веб-интерфейса, а также глобально.Когда я запускаю npm install
в терминале, все работает нормально, но когда я чищу установить свой проект, как-то появляется следующая ошибка:
[ERROR] internal/modules/cjs/loader.js:582
[ERROR] throw err;
[ERROR] ^
[ERROR]
[ERROR] Error: Cannot find module '../lib/utils/unsupported.js'
[ERROR] at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
[ERROR] at Function.Module._load (internal/modules/cjs/loader.js:506:25)
[ERROR] at Module.require (internal/modules/cjs/loader.js:636:17)
[ERROR] at require (internal/modules/cjs/helpers.js:20:18)
[ERROR] at /Users/jonathansx/projects/Keyfinder/Backoffice/node/node_modules/npm/bi. n/npm-cli.js:19:21
[ERROR] at Object.<anonymous> (/Users/jonathansx/projects/Keyfinder/Backoffice/node/node_modules/npm/b in/npm-cli.js:153:3)
[ERROR] at Module._compile (internal/modules/cjs/loader.js:688:30)
[ERROR] at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
[ERROR] at Module.load (internal/modules/cjs/loader.js:598:32)
[ERROR] at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
Я использую MAC.Переменная окружения Node_Path не установлена, может быть, она как-то связана с этим?
Вот моя конфигурация сборки maven:
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-maven-plugin.version}</version>
<executions>
<!-- Install our node and npm version to run npm/node scripts-->
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v10.13.0</nodeVersion>
</configuration>
</execution>
<!-- Install all project dependencies -->
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<!-- optional: default phase is "generate-resources" -->
<phase>generate-resources</phase>
<!-- Optional configuration which provides for running any npm command -->
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<!-- Build and minify static files -->
<execution>
<id>npm run build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
<!-- Run Unit tests with Jest -->
<execution>
<id>npm run test:unit</id>
<goals>
<goal>npm</goal>
</goals>
<phase>test</phase>
<configuration>
<arguments>run test:unit</arguments>
</configuration>
</execution>
<!-- Run End2End tests with Nightwatch -->
<!--
<execution>
<id>npm run test:e2e</id>
<goals>
<goal>npm</goal>
</goals>
<phase>test</phase>
<configuration>
<arguments>run test:e2e</arguments> </configuration>
</execution>
-->
</executions>
</plugin>
Что я пробовал:
- Переустановка узла через brew
- удалены node_modules и npm, установленные через терминал