sp-dev-fx-webparts/samples/js-extend-webpack
Vesa Juvonen d0ef4a9599 Added version markers to readme files 2017-02-13 17:03:05 +02:00
..
config Webpack extension sample. 2017-01-25 22:18:17 -08:00
src Webpack extension sample. 2017-01-25 22:18:17 -08:00
typings Webpack extension sample. 2017-01-25 22:18:17 -08:00
.editorconfig Webpack extension sample. 2017-01-25 22:18:17 -08:00
.gitattributes Webpack extension sample. 2017-01-25 22:18:17 -08:00
.gitignore Webpack extension sample. 2017-01-25 22:18:17 -08:00
.npmignore Webpack extension sample. 2017-01-25 22:18:17 -08:00
.yo-rc.json Webpack extension sample. 2017-01-25 22:18:17 -08:00
README.md Added version markers to readme files 2017-02-13 17:03:05 +02:00
gulpfile.js Webpack extension sample. 2017-01-25 22:18:17 -08:00
package.json Webpack extension sample. 2017-01-25 22:18:17 -08:00
tsconfig.json Webpack extension sample. 2017-01-25 22:18:17 -08:00

README.md

Extending webpack in the SharePoint Framework toolchain

Summary

Webpack is a JavaScript module bundler that takes your JavaScript files and its dependencies and generates one or more JavaScript bundles so you can load different bundles for different scenarios.

One common task you would want to add to the SharePoint Framework toolchain is to extend the webpack configuration with custom loaders and plugins.

This sample shows how to use the webpack markdown-loader to preprocess markdown files to HTML string.

Read the following documentation for detailed information on working with webpack loaders in SharePoint Framework:

Used SharePoint Framework Version

drop

Applies to

Solution

Solution Author(s)
js-extend-webpack Chakkaradeep Chandran (@chakkaradeep)

Version history

Version Date Comments
1.0 January 25th, 2017 Initial release

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.


Minimal Path to Awesome

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp serve