Skip to content

Commit

Permalink
fix package issue
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenfang committed Aug 17, 2019
1 parent f00cfc3 commit c0c0e61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuetify-datetime-picker",
"version": "2.0.1",
"version": "2.0.2",
"description": "DatetimePicker component for Vuetify.js.",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 1 addition & 3 deletions webpack/webpack.base.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const {join} = require('path')
const {CleanWebpackPlugin} = require('clean-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')

const resolve = dir => join(__dirname, '..', dir)

Expand Down Expand Up @@ -82,8 +81,7 @@ module.exports = {
},
plugins: [
new CleanWebpackPlugin(),
new VueLoaderPlugin(),
new VuetifyLoaderPlugin()
new VueLoaderPlugin()
],
resolve: {
extensions: ['.js', '.vue', '.json', '.css', '.less', '.styl'],
Expand Down
2 changes: 2 additions & 0 deletions webpack/webpack.dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const webpack = require('webpack')
const merge = require('webpack-merge')
const basicConfig = require('./webpack.base.config')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')

const resolve = dir => join(__dirname, '..', dir)

Expand All @@ -20,6 +21,7 @@ module.exports = merge(basicConfig, {
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new VuetifyLoaderPlugin(),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/index.html',
Expand Down

0 comments on commit c0c0e61

Please sign in to comment.