From 2702b3580e86287308cc4d0cea2c48cca899f1bf Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Wed, 26 Jun 2019 17:52:57 +0800 Subject: [PATCH] Revert all source-loader usage due to failing CI builds --- examples/ember-cli/.storybook/webpack.config.js | 2 +- examples/html-kitchen-sink/.storybook/webpack.config.js | 2 +- examples/marko-cli/.storybook/webpack.config.js | 2 +- examples/mithril-kitchen-sink/.storybook/webpack.config.js | 2 +- examples/official-storybook/webpack.config.js | 2 +- examples/polymer-cli/.storybook/webpack.config.js | 2 +- examples/preact-kitchen-sink/.storybook/webpack.config.js | 2 +- examples/rax-kitchen-sink/.storybook/webpack.config.js | 2 +- examples/riot-kitchen-sink/.storybook/webpack.config.js | 2 +- examples/svelte-kitchen-sink/.storybook/webpack.config.js | 2 +- examples/vue-kitchen-sink/.storybook/webpack.config.js | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/ember-cli/.storybook/webpack.config.js b/examples/ember-cli/.storybook/webpack.config.js index d382a097d81..915eb22693e 100644 --- a/examples/ember-cli/.storybook/webpack.config.js +++ b/examples/ember-cli/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../')], enforce: 'pre', }); diff --git a/examples/html-kitchen-sink/.storybook/webpack.config.js b/examples/html-kitchen-sink/.storybook/webpack.config.js index 49d6279ea52..d2d694457e0 100644 --- a/examples/html-kitchen-sink/.storybook/webpack.config.js +++ b/examples/html-kitchen-sink/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../stories')], enforce: 'pre', }); diff --git a/examples/marko-cli/.storybook/webpack.config.js b/examples/marko-cli/.storybook/webpack.config.js index 5c4768c30ce..8c62bf31bd4 100644 --- a/examples/marko-cli/.storybook/webpack.config.js +++ b/examples/marko-cli/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); diff --git a/examples/mithril-kitchen-sink/.storybook/webpack.config.js b/examples/mithril-kitchen-sink/.storybook/webpack.config.js index 5c4768c30ce..8c62bf31bd4 100644 --- a/examples/mithril-kitchen-sink/.storybook/webpack.config.js +++ b/examples/mithril-kitchen-sink/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); diff --git a/examples/official-storybook/webpack.config.js b/examples/official-storybook/webpack.config.js index b027a4b06a0..a7fcc6a181b 100644 --- a/examples/official-storybook/webpack.config.js +++ b/examples/official-storybook/webpack.config.js @@ -42,7 +42,7 @@ module.exports = async ({ config }) => ({ test: /\.stories\.[tj]sx?$/, use: [ { - loader: require.resolve('@storybook/source-loader'), + loader: require.resolve('@storybook/addon-storysource/loader'), options: { injectParameters: true }, }, ], diff --git a/examples/polymer-cli/.storybook/webpack.config.js b/examples/polymer-cli/.storybook/webpack.config.js index 0be01086159..3e7ae19f52b 100644 --- a/examples/polymer-cli/.storybook/webpack.config.js +++ b/examples/polymer-cli/.storybook/webpack.config.js @@ -4,7 +4,7 @@ const webpack = require('webpack'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); diff --git a/examples/preact-kitchen-sink/.storybook/webpack.config.js b/examples/preact-kitchen-sink/.storybook/webpack.config.js index c8a75926b7c..46ba330e666 100644 --- a/examples/preact-kitchen-sink/.storybook/webpack.config.js +++ b/examples/preact-kitchen-sink/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); diff --git a/examples/rax-kitchen-sink/.storybook/webpack.config.js b/examples/rax-kitchen-sink/.storybook/webpack.config.js index 39dff33950d..99e298d739f 100644 --- a/examples/rax-kitchen-sink/.storybook/webpack.config.js +++ b/examples/rax-kitchen-sink/.storybook/webpack.config.js @@ -5,7 +5,7 @@ module.exports = { rules: [ { test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }, diff --git a/examples/riot-kitchen-sink/.storybook/webpack.config.js b/examples/riot-kitchen-sink/.storybook/webpack.config.js index 5f6354c3c59..9eb38178998 100644 --- a/examples/riot-kitchen-sink/.storybook/webpack.config.js +++ b/examples/riot-kitchen-sink/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); diff --git a/examples/svelte-kitchen-sink/.storybook/webpack.config.js b/examples/svelte-kitchen-sink/.storybook/webpack.config.js index 243b6489507..a943831441a 100644 --- a/examples/svelte-kitchen-sink/.storybook/webpack.config.js +++ b/examples/svelte-kitchen-sink/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); diff --git a/examples/vue-kitchen-sink/.storybook/webpack.config.js b/examples/vue-kitchen-sink/.storybook/webpack.config.js index 243b6489507..a943831441a 100644 --- a/examples/vue-kitchen-sink/.storybook/webpack.config.js +++ b/examples/vue-kitchen-sink/.storybook/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = async ({ config }) => { config.module.rules.push({ test: [/\.stories\.js$/, /index\.js$/], - loaders: [require.resolve('@storybook/source-loader')], + loaders: [require.resolve('@storybook/addon-storysource/loader')], include: [path.resolve(__dirname, '../src')], enforce: 'pre', });