webpack - How to use noParse in Create-React-App? -
i'm seeing warning in npm start
output , can't seem past regardless of put in package.json
. i'm beginning webpack , don't understand put in module.noparse pass without raising warning.
warning in ./~/ajv/dist/ajv.bundle.js
critical dependencies: 1:476-483 seems pre-built javascript file. though possible, it's not recommended. try require original source better results.
@ ./~/ajv/dist/ajv.bundle.js 1:476-483
this package.json
{ "name": "name", "version": "0.1.0", "private": true, "dependencies": { "axios": "^0.16.1", "react": "^15.5.4", "react-dom": "^15.5.4" }, "devdependencies": { "react-scripts": "0.9.5" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject" }, "module": { "noparse": [ "/[\/\\]node_modules[\/\\]ajv[\/\\]/" ] } }
please advise.
Comments
Post a Comment