0

I found many tutorials on how to get things running without node_modules, but I want to run Webpack and end up with one JavaScript file, that contains all of my dependencies.

1
  • What have you done so far? Show us anything you have done and we can get start from that. Commented Aug 13, 2018 at 12:02

1 Answer 1

1

You can use Webpack configuration file in order to create one bundle file

output: { library: 'someLibName', libraryTarget: 'umd', filename: 'app.bundle.js', auxiliaryComment: 'Test Comment' } 

above will crate a bunndle in the path you have defined.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.