REPLACE vue with polymer

This commit is contained in:
Norbert de Langen 2017-11-03 09:43:51 +01:00
parent f8198397a1
commit 7025701140
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
6 changed files with 16 additions and 8 deletions

View File

@ -14,7 +14,7 @@ With it, you can visualize different states of your UI components and develop th
> Storybook for Polymer is at the **EXPERIMENTAL** stage!
![Storybook Screenshot](https://github.com/storybooks/storybook/blob/master/app/vue/docs/demo.gif)
![Storybook Screenshot](https://github.com/storybooks/storybook/blob/master/app/polymer/docs/demo.gif)
Storybook runs outside of your app.
So you can develop UI components in isolation without worrying about app specific dependencies and requirements.

View File

@ -1,7 +1,7 @@
{
"name": "@storybook/polymer",
"version": "3.3.0-alpha.2",
"description": "Storybook for Polymer: Develop Vue Component in isolation with Hot Reloading.",
"description": "Storybook for Polymer: Develop Polymer Component in isolation with Hot Reloading.",
"homepage": "https://github.com/storybooks/storybook/tree/master/apps/polymer",
"bugs": {
"url": "https://github.com/storybooks/storybook/issues"

View File

@ -48,7 +48,7 @@ export default function(configType, baseConfig, configDir) {
const customConfigPath = path.resolve(configDir, 'webpack.config.js');
if (!fs.existsSync(customConfigPath)) {
logger.info('=> Using default webpack setup based on "vue-cli".');
logger.info('=> Using default webpack setup based on "polymer-cli".');
const configPath = path.resolve(__dirname, './config/defaults/webpack.config.js');
const customConfig = require(configPath);

View File

@ -1,4 +1,4 @@
/* globals window */
window.STORYBOOK_REACT_CLASSES = {};
window.STORYBOOK_ENV = 'vue';
window.STORYBOOK_ENV = 'polymer';

View File

@ -88,7 +88,6 @@ export default function() {
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
modules: ['node_modules'].concat(nodePaths),
alias: {
vue$: require.resolve('vue/dist/vue.esm.js'),
react$: require.resolve('react'),
'react-dom$': require.resolve('react-dom'),
},

View File

@ -66,9 +66,18 @@ export default function() {
exclude: excludePaths,
},
{
test: /\.vue$/,
loader: require.resolve('vue-loader'),
options: {},
test: /\.html$/,
exclude: /node_modules\/(?!(polymer-redux|polymer-webpack-loader)\/).*/,
use: [
{
loader: require.resolve('babel-loader'),
options: { cacheDirectory: '.babel-cache' },
},
{
loader: require.resolve('polymer-webpack-loader'),
options: { processStyleLinks: true },
},
],
},
],
},