sp-dev-fx-webparts/samples/js-extend-webpack
dependabot[bot] 5cc2f9440c
Bump path-parse from 1.0.5 to 1.0.7 in /samples/js-extend-webpack
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-08-11 04:01:08 +00:00
..
assets Changed from updated to modificationDateTime 2021-05-02 15:39:42 -04:00
config Updating the "Extend Webpack" example to correspond to the edits to the documentation. (#332) 2017-10-13 09:32:54 -04:00
src Updating the "Extend Webpack" example to correspond to the edits to the documentation. (#332) 2017-10-13 09:32:54 -04: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 Merge pull request #1406 from bcameron1231/master 2020-07-23 21:03:02 -04:00
gulpfile.js Updating the "Extend Webpack" example to correspond to the edits to the documentation. (#332) 2017-10-13 09:32:54 -04:00
package.json Updating the "Extend Webpack" example to correspond to the edits to the documentation. (#332) 2017-10-13 09:32:54 -04:00
tsconfig.json `js-extend-webpack` sample updated to GA (#257) 2017-07-21 20:54:47 +03:00
tslint.json Add tslint at the root of each SPFx project (#394) 2018-01-08 15:58:48 +02:00
yarn.lock Bump path-parse from 1.0.5 to 1.0.7 in /samples/js-extend-webpack 2021-08-11 04:01:08 +00:00

README.md

page_type products languages extensions
sample
office-sp
javascript
typescript
contentType technologies createdDate
tools
SharePoint Framework
1/1/2016 12:00:00 AM

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)
Updated to GA Version Velin Georgiev (@VelinGeorgiev)

Version history

Version Date Comments
1.0 January 25th, 2017 Initial release
1.1 July 9th, 2017 Updated to GA Version

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