Replies: 1 comment 1 reply
-
I have the same exact issue, how can this be resolved? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using Parcel to build my css and js.
This is my package.json
{ "name": "", "version": "1.0.0", "description": "", "scripts": { "development": "parcel watch src/js/index.js --dist-dir ./dist", "production": "parcel build src/js/index.js --dist-dir ./dist", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "browserslist": "defaults", "dependencies": { "bootstrap": "^5.3.3", "parcel": "^2.12.0" }, "devDependencies": { "@parcel/transformer-sass": "^2.12.0" } }
This is the index.js
import 'bootstrap'; import '../scss/main/main.scss';
When i run the script "development" in Powershell Terminal like:
npm run development
i get this warning:
Must i be worried to keep using Parcel for my builds? Can i solve this issue myself?
Beta Was this translation helpful? Give feedback.
All reactions