You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
I'm new to Babel, React, and SystemJS. Basically inherited a project that uses all this and trying to get things running in the browser. They used bundles for production, but are not being helpful due to contract/work dispute.
My attempts to get things working have been good up until a problem with running in the browser, and plugin-babel passing control(?) or importing 'systemjs-babel-browser' which makes sense, but problem is that the actual network request has the version string dropped, and so generates a 404 error when trying to load that dependency.
Given the following express static debug log: (ie set DEBUG=express:* & gulp serve )
notice how the initial request by systemjs is to /jspm_packages/npm/[email protected]/plugin-babel.js
and succeeds (shown via lines 17-19)
However, plugin-babel does an import for systemjs-babel-browser, but the request drops the version string @0.0.25 and tries to have the browser download /jspm_packages/npm/systemjs-plugin-babel/systemjs-babel-browser.js
which fails.
Here's chrome network tab:
Whats going on here?
The text was updated successfully, but these errors were encountered:
ericnewton76
changed the title
in browser, plugin-babel trying to load systemjs-babel-browser without respect to current path
in browser, plugin-babel trying to load systemjs-babel-browser without respect to current path containing version @0.0.25
Mar 14, 2018
ericnewton76
changed the title
in browser, plugin-babel trying to load systemjs-babel-browser without respect to current path containing version @0.0.25
in browser, plugin-babel trying to load systemjs-babel-browser without preserving version in path
Mar 14, 2018
I'm wondering if this is a SystemJS problem or plugin-babel incorrectly specifying its requires/imports?
ericnewton76
changed the title
in browser, plugin-babel trying to load systemjs-babel-browser without preserving version in path
plugin-babel trying to load systemjs-babel-browser without preserving version in path
Mar 15, 2018
I updated the title because I just noticed this is also happening during a gulp bundle building task, so I'm seeing the same behavior in nodejs using the same config.js.
nm, I found the offending line in config.js which was quoted as to be used, which of prevents success because the mapping of systemjs-babel-build has the version removed and therefore won't be found.
I'm new to Babel, React, and SystemJS. Basically inherited a project that uses all this and trying to get things running in the browser. They used bundles for production, but are not being helpful due to contract/work dispute.
My attempts to get things working have been good up until a problem with running in the browser, and plugin-babel passing control(?) or importing 'systemjs-babel-browser' which makes sense, but problem is that the actual network request has the version string dropped, and so generates a 404 error when trying to load that dependency.
Given the following express static debug log: (ie
set DEBUG=express:* & gulp serve
)notice how the initial request by systemjs is to
/jspm_packages/npm/[email protected]/plugin-babel.js
and succeeds (shown via lines 17-19)
However, plugin-babel does an import for systemjs-babel-browser, but the request drops the version string
@0.0.25
and tries to have the browser download/jspm_packages/npm/systemjs-plugin-babel/systemjs-babel-browser.js
which fails.
Here's chrome network tab:
Whats going on here?
The text was updated successfully, but these errors were encountered: