Unverified Commit 7e05e7f1 by Jae Bradley Committed by GitHub

Merge pull request #57 from edx/add-build-notification

Implement Storybook Build Notifier
parents 31ddbf7a a0cfe563
const path = require('path'); const path = require('path');
const WebpackBuildNotifierPlugin = require('webpack-build-notifier');
module.exports = { module.exports = {
devtool: 'source-map', plugins: [
new WebpackBuildNotifierPlugin({
title: 'Paragon Storybook Build',
warningSound: true,
failureSound: true,
}),
],
devtool: "source-map",
module: { module: {
rules: [ rules: [
{ {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
{ {
"name": "@edx/paragon", "name": "@edx/paragon",
"version": "1.1.3", "version": "1.1.4",
"description": "Accessible, responsive UI component library based on Bootstrap.", "description": "Accessible, responsive UI component library based on Bootstrap.",
"main": "src/index.js", "main": "src/index.js",
"author": "arizzitano", "author": "arizzitano",
...@@ -62,6 +62,7 @@ ...@@ -62,6 +62,7 @@
"source-map-loader": "^0.2.1", "source-map-loader": "^0.2.1",
"style-loader": "^0.19.0", "style-loader": "^0.19.0",
"webpack": "^3.0.0", "webpack": "^3.0.0",
"webpack-build-notifier": "^0.1.16",
"webpack-dev-server": "^2.4.4" "webpack-dev-server": "^2.4.4"
}, },
"jest": { "jest": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment