Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "nicolaslau"

@maliming it works. do i need to rebuild the migrator every other source codes(like web) changed? or just copy only my project updated dll(not migrator) to this dir ?

@exlnt It the "watching" feature of webpack that watch files changed and recomplie. check this using-watch-mode. Actually, it finished building and you can force to stop safely. But it stop CI/CD process. You can change the package.json(npm config file at Mvc project dir). like this.

  "scripts": {
    "create-bundles": "webpack --progress --profile --watch --mode=development",
    "build": "webpack --mode=production",
    "create-bundles-no-watch": "webpack --progress --profile --mode=development"
  },
  

change "create-bundles" to remove "--watch" or add a new script like "create-bundles-no-watch" that remove "--watch" and use "npm run create-bundles-no-watch" instead of "npm run create-bundles".

at webpack production mode, building using "npm run build" will not hang.

Showing 21 to 22 of 22 entries