Recently, I got unexpected problem when deploying my Ruby on Rails app to Heroku:
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main resolved in node_modules/@babel/helper-pilation-targets/package.json
To be honest, I do not have any idea because I did not touch any javascript code at all, does anyone encounter this error and resolved it?
Here is the full logs:
I am very appreciated if someone can help.
Recently, I got unexpected problem when deploying my Ruby on Rails app to Heroku:
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main resolved in node_modules/@babel/helper-pilation-targets/package.json
To be honest, I do not have any idea because I did not touch any javascript code at all, does anyone encounter this error and resolved it?
Here is the full logs: https://gist.github./johnvmo/b3340f541cf32cb0c15ecbffc1aca6f9
I am very appreciated if someone can help.
Share Improve this question asked May 29, 2020 at 8:28 Chau GiangChau Giang 1,56414 silver badges20 bronze badges 1-
I reslove it using the second answer in this link
I had the similar problem. npm install @babel/helper-pilation-targets --save-dev solved this situation
– realsarm Commented Aug 1, 2020 at 15:30
3 Answers
Reset to default 8Ran into the same error and found this:
Solution
This is a regression in Node.js. If you hit this issue from search engines, please choose one of the following solutions
update @babel deps to v7.8.7
use Node < 13.9
wait until nodejs/node#32107 is fixed! (Probably in the next Node.js patch release).
https://github./babel/babel/issues/11216
I have simple solution just downgrade Nodejs version to v10 LTS or 11. For example in my Raisl app, my Dockerfile look like this:
FROM ruby:2.7.1
ARG DEBIAN_FRONTEND=noninteractive
ENV RAILS_ENV=production
ENV RAILS_SERVE_STATIC_FILES=true
ENV RAILS_LOG_TO_STDOUT=true
RUN curl -sL https://deb.nodesource./setup_10.x | bash - && \
curl -sS https://dl.yarnpkg./debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg./debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && \
apt-get install -qq -y nodejs yarn vim
#RUN apt-get update -yqq && apt-get install -yqq --no-install-remends nodejs
COPY Gemfile* /usr/src/app/
WORKDIR /usr/src/app
RUN bundle config --global frozen 1
RUN bundle config set without 'development test'
RUN bundle install
#RUN yarn install --prod
COPY . /usr/src/app/
# RUN bundle exec rake assets:prepile
CMD ["bin/rails", "s", "-b", "0.0.0.0"]
Based on @DoubleMalt answer, I downgraded Node to v13.8.0, it worked. It's an old project.
However, for the current Nuxt project, it hits an error:
ExperimentalWarning: Package name self resolution is an experimental feature. This feature could change at any time
but the project runs fine so far.