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
I have the need (upstream validation) to make sure that a certain <script> tag, pointing to an external URL, is the very first script on a page. Until Parcel 2.8.3 this worked as expected by just placing it first in the file. In recent version a index.runtime.243658d2.js is placed before my first script and thus breaks the validation
🐛 bug report
I have the need (upstream validation) to make sure that a certain <script> tag, pointing to an external URL, is the very first script on a page. Until Parcel
2.8.3
this worked as expected by just placing it first in the file. In recent version aindex.runtime.243658d2.js
is placed before my first script and thus breaks the validation🎛 Configuration (.babelrc, package.json, cli command)
package.json contains this, maybe relevant
🤔 Expected Behavior
keep my script order as much as possible
😯 Current Behavior
inserts a new script not only before generated assets, but even before external ones
💁 Possible Solution
don't place the helper script in front of EVERY script, but just before the first assets script
🔦 Context
I'm submitting the code to a extension store and they really want to be sure that their "security" script runs first
The text was updated successfully, but these errors were encountered: