-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from homeday-de/develop
[Release] Homeday 2.0
- Loading branch information
Showing
113 changed files
with
9,616 additions
and
3,330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
service_name: travis-pro | ||
repo_token: 9w8H3LVdjGhOpjhW461fxEMighMzzJX1a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,7 @@ yarn-error.log* | |
*.sw* | ||
|
||
# AWS credentials | ||
aws.json | ||
aws.json | ||
|
||
# Jest coverage reports | ||
/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
import { create } from '@storybook/theming'; | ||
import logo from './logo.svg'; | ||
|
||
export default create({ | ||
base: 'light', | ||
brandTitle: 'Homeday', | ||
brandUrl: 'https://www.homeday.de', | ||
brandImage: logo, | ||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
const generateWebpackAlias = require('../../webpack-alias'); | ||
|
||
module.exports = (baseConfig, env, defaultConfig) => { | ||
// Extend defaultConfig as you need. | ||
module.exports = ({ config }) => { | ||
// Extend config as you need. | ||
// eslint-disable-next-line | ||
defaultConfig.resolve.alias = generateWebpackAlias({ | ||
config.resolve.alias = generateWebpackAlias({ | ||
custom: { | ||
'@': './src', | ||
vue$: './node_modules/vue/dist/vue.esm.js', | ||
}, | ||
}); | ||
defaultConfig.module.rules.push({ | ||
config.module.rules.push({ | ||
test: /\.md$/, | ||
use: [ | ||
{ | ||
loader: 'html-loader', | ||
}, { | ||
loader: 'markdown-loader', | ||
loader: 'raw-loader', | ||
}, | ||
], | ||
}); | ||
return defaultConfig; | ||
return config; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.