Meteor takes more than 10 mins to build. If I make a simple change it just hangs on the refresh. This is on a windows 10 machine. What could I doing wrong?
Based on the recommendation here, how should I remove the meteor-node-stubs package to check if that helps?
Here’s my package.json
{
“name”: “simple-todos-react”,
“private”: true,
“scripts”: {
“start”: “meteor run”,
“test”: “meteor test --once --driver-package meteortesting:mocha”,
“test-app”: “TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha”,
“visualize”: “meteor --production --extra-packages bundle-visualizer”
},
“dependencies”: {
“@babel/runtime”: “^7.5.5”,
“bcrypt”: “^3.0.0”,
“classnames”: “^2.2.6”,
“meteor-node-stubs”: “^0.4.1”,
“react”: “^16.9.0”,
“react-dom”: “^16.9.0”,
“simpl-schema”: “^1.5.5”
},
“meteor”: {
“mainModule”: {
“client”: “client/main.js”,
“server”: “server/main.js”
},
“testModule”: “tests/main.js”
},
“devDependencies”: {
“chai”: “^4.2.0”
}
}