mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-19 04:31:08 +00:00
* Improve sidenav performance and expansion list performance * Init dialog * Add initial transition * Add backdrop to md-menu * Create dialog opening from and closing to * Add example os basic and opening from and to * Add todo * Create alias for root element * Fix dialog position * Improve transitions * Fix rules * Fix dialog position on open * Improve docs transitions * Create styles for actions and content * Create confirm dialog preset * Create alert dialog preset * Create prompt dialog preset * Add example with HTML * Improve close transition * Create new documentation template for components * Improve template for mobile * Improve toolbar behaviour * Format code-block and apply clipboard.js * Move clipboard to devDependencies * Show toast after copy * Add function to toggle sidenav and add page title * create avatar documentation with the new template * Improve themes and codes * Remove hover * fix copied toast position * add classes tab * create bottom-bar documentation with the new template * improve bottom bar docs * create button documentation with the new template * create button toggle documentation with the new template * Fix backdrop styles * Fix image color names * create card documentation with the new template * Update debug-lib.js (#106) Fixes webpack missing module error when loading scss * create checkboxes documentation with the new template * Add more alignment options (#109) * Create offset options - md-offset-y and md-offset-x * Add option to align the menu to the trigger * Create better examples * fix bottom-right position * create dialog documentation with the new template * create icon documentation with the new template * fix typo * create input documentation with the new template * create tooltip documentation with the new template * create whiteframe documentation with the new template * Fix unregisterMouseEvent not accepting the element as parameter (#118) * create radio documentation with the new template * create ripple documentation with the new template * create switch documentation with the new template * create subheader documentation with the new template * fix text * improvements over menu * create menu documentation with the new template * create sidenav documentation with the new template * create toolbar documentation with the new template * improve visibility of some code-blocks * create select documentation with the new template * create typography documentation with the new template * create changelog page with the new template * create about page with the new template * create error page with the new template * create introduction page with the new template * create getting started page with the new template * create getting started page with the new template * add codepen examples * create list documentation with the new template * improve docs * add old releases in a folder * optimize build time * remove unused code and rename components * generate old versions * redirect to old documentation versions * [build] 0.4.0 * [build] 0.4.0 * restore dist * get current version from url * [build] 0.4.0 * restore old docs * add correct branch to release script * create table documentation with the new template * add a better explanation of list classes * improve docs * create table documentation with the new template * add code example for tabs * remove directive example of ripple * fix code example of typograph items * general fixes and code cleanup * create themes documentation * start the creation of button "edit on codepen" * group theme text and fix height of codepen example * start creation of tabs * recreate tabs * fix shadow transition inside menus (#141 #129) * add href support for mdBottomBar (#142 #121) * fix table row not watching item #116 #113 (#143) * Improvement/md tooltip (#144) * fix stucked tooltips #103 * remove example * update website url * update libs * fix vue version reference * [build] 0.4.0
102 lines
2 KiB
JavaScript
102 lines
2 KiB
JavaScript
import path from 'path';
|
|
import webpack from 'webpack';
|
|
import autoprefixer from 'autoprefixer';
|
|
import eslintFormatter from 'eslint-friendly-formatter';
|
|
import config from '../config';
|
|
|
|
export default {
|
|
entry: {
|
|
docs: './docs/src/index.js'
|
|
},
|
|
output: {
|
|
path: config.rootPath,
|
|
publicPath: config.publicPath,
|
|
filename: '[name].js'
|
|
},
|
|
resolve: {
|
|
extensions: ['', '.js', '.vue'],
|
|
fallback: [config.nodePath],
|
|
alias: {
|
|
assets: path.resolve(__dirname, '../../docs/src/assets')
|
|
}
|
|
},
|
|
resolveLoader: {
|
|
fallback: [config.nodePath]
|
|
},
|
|
module: {
|
|
preLoaders: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'eslint',
|
|
include: config.projectRoot,
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'eslint',
|
|
include: config.projectRoot,
|
|
exclude: /node_modules/
|
|
}
|
|
],
|
|
loaders: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue'
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel',
|
|
include: config.projectRoot,
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
loader: 'vue-style-loader!css-loader'
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
loader: 'vue-style-loader!css-loader!sass-loader'
|
|
},
|
|
{
|
|
test: /\.theme$/,
|
|
loaders: ['raw', 'sass-loader']
|
|
},
|
|
{
|
|
test: /\.json$/,
|
|
loaders: ['json-loader']
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg)(\?.*)?$/,
|
|
loader: 'url',
|
|
query: {
|
|
limit: 10000,
|
|
name: '/assets/[name].[hash:8].[ext]'
|
|
}
|
|
},
|
|
{
|
|
test: /\.html$/,
|
|
loader: 'vue-html'
|
|
}
|
|
]
|
|
},
|
|
eslint: {
|
|
fix: true,
|
|
formatter: eslintFormatter
|
|
},
|
|
vue: {
|
|
loaders: {
|
|
css: 'vue-style-loader!css-loader',
|
|
scss: 'vue-style-loader!css-loader!sass-loader'
|
|
},
|
|
postcss: [
|
|
autoprefixer({
|
|
browsers: ['last 2 versions']
|
|
})
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': config.env
|
|
})
|
|
]
|
|
};
|