Skip to content

Commit 64d6f95

Browse files
committed
chore: updated deps
1 parent 73a53ca commit 64d6f95

11 files changed

+1861
-1675
lines changed

build/rollup.config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ export default {
99
format: "umd",
1010
name: "VueCosha",
1111
exports: "named",
12-
file: "dist/vue-cosha.js"
12+
file: "dist/vue-cosha.js",
1313
},
1414
{
1515
format: "esm",
16-
file: "dist/vue-cosha.esm.js"
17-
}
18-
]
16+
file: "dist/vue-cosha.esm.js",
17+
},
18+
],
1919
};

build/rollup.config.min.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export default {
99
format: "umd",
1010
name: "VueCosha",
1111
exports: "named",
12-
file: "dist/vue-cosha.min.js"
13-
}
12+
file: "dist/vue-cosha.min.js",
13+
},
1414
};

build/webpack.config.js

+16-14
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,52 @@
1-
const path = require('path')
2-
const VueLoaderPlugin = require('vue-loader/lib/plugin')
3-
const HtmlWebpackPlugin = require('html-webpack-plugin')
1+
const path = require("path");
2+
const VueLoaderPlugin = require("vue-loader/lib/plugin");
3+
const HtmlWebpackPlugin = require("html-webpack-plugin");
44

55
module.exports = {
66
entry: {
7-
index: path.resolve(__dirname, '../src/main.js'),
7+
index: path.resolve(__dirname, "../src/main.js"),
88
},
99
output: {
10-
path: path.resolve(__dirname, './dist'),
11-
filename: 'demo.min.js',
10+
path: path.resolve(__dirname, "./dist"),
11+
filename: "demo.min.js",
1212
},
1313
module: {
1414
rules: [
1515
{
1616
test: /\.vue$/,
17-
loader: 'vue-loader',
17+
loader: "vue-loader",
1818
},
1919
{
2020
test: /\.css$/,
21-
use: ['vue-style-loader', 'css-loader'],
21+
use: ["vue-style-loader", "css-loader"],
2222
},
2323
{
2424
test: /\.(png|jpe?g|gif|svg)$/i,
2525
use: [
2626
{
27-
loader: 'file-loader',
27+
loader: "file-loader",
2828
},
2929
],
3030
},
3131
],
3232
},
3333
resolve: {
34-
extensions: ['.js', '.vue'],
34+
extensions: [".js", ".vue"],
3535
alias: {
36-
vue$: 'vue/dist/vue.esm.js',
36+
vue$: "vue/dist/vue.esm.js",
3737
},
3838
},
3939
plugins: [
4040
new VueLoaderPlugin(),
4141
new HtmlWebpackPlugin({
42-
template: path.resolve(__dirname, '../src/index.html'),
42+
template: path.resolve(__dirname, "../src/index.html"),
4343
}),
4444
],
4545
devServer: {
46-
contentBase: path.resolve(__dirname, './dist'),
46+
contentBase: path.resolve(__dirname, "./dist"),
4747
port: 8080,
4848
hot: true,
49+
open: true,
50+
overlay: true,
4951
},
50-
}
52+
};

lib/_defaults.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ export default {
33
brightness: 1,
44
saturation: 1,
55
y: 0,
6-
x: 0
6+
x: 0,
77
};

lib/_directive.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ const cosha = (el, options, vnode) => {
2828
}
2929

3030
if (hasBeenCreated) {
31-
const clonedChild = [...el.parentNode.children].find(child =>
31+
const clonedChild = [...el.parentNode.children].find((child) =>
3232
child.classList.contains(`${className}-clone`)
3333
);
3434
clonedChild.style.cssText = createCloneStyles(clonedChild.style, options);
3535
}
3636
};
3737

38-
export default options => {
38+
export default (options) => {
3939
const mergedOptions = Object.assign(defaults, options);
4040

4141
const inserted = (el, { value }, vnode) => {

lib/_styles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const createWrapperClass = className => {
1+
const createWrapperClass = (className) => {
22
const created = document.getElementById(`${className}-class`);
33

44
if (created) {

lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import cosha from "./_directive";
33
const plugin = {
44
install(Vue, options) {
55
Vue.directive("cosha", cosha(options));
6-
}
6+
},
77
};
88

99
export default plugin;

0 commit comments

Comments
 (0)