файл script.js обрабатывается с помощью запуска Babel командой npm run build
вот код package.json
{
"name": "video-order",
"version": "1.0.0",
"description": "",
"main": "index.js",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
]
},
"scripts": {
"build": "babel script -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phillfeel/app_for_video-order.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/phillfeel/app_for_video-order/issues"
},
"homepage": "https://github.com/phillfeel/app_for_video-order#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-es2015": "^7.0.0-beta.53"
},
"dependencies": {
"classlist-polyfill": "^1.2.0"
}
}
Подскажите пожалуйста куда добавить зависимость с "classlist-polyfill" чтобы Babel тоже задействовал этот пакет.