Skip to content
This repository was archived by the owner on Nov 10, 2020. It is now read-only.

Commit 8c81243

Browse files
committed
Upgrade deps
1 parent 3aa8c0d commit 8c81243

File tree

6 files changed

+340
-327
lines changed

6 files changed

+340
-327
lines changed

.babelrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"presets": [
33
[
4-
"@babel/env",
4+
"@babel/preset-env",
55
{
66
"modules": false,
77
"forceAllTransforms": true,
@@ -17,7 +17,7 @@
1717
"test": {
1818
"presets": [
1919
[
20-
"@babel/env",
20+
"@babel/preset-env",
2121
{
2222
"targets": {
2323
"node": "current"

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# Vue jQuery Mask Component
22

3-
[![vue-js](https://img.shields.io/badge/vue.js-2.x-brightgreen.svg?maxAge=604800)](https://vuejs.org/)
43
[![downloads](https://img.shields.io/npm/dt/vue-jquery-mask.svg)](http://npm-stats.com/~packages/vue-jquery-mask)
54
[![npm-version](https://img.shields.io/npm/v/vue-jquery-mask.svg)](https://www.npmjs.com/package/vue-jquery-mask)
65
[![github-tag](https://img.shields.io/github/tag/ankurk91/vue-jquery-mask.svg?maxAge=1800)](https://github.com/ankurk91/vue-jquery-mask/)
76
[![license](https://img.shields.io/github/license/ankurk91/vue-jquery-mask.svg?maxAge=1800)](https://yarnpkg.com/en/package/vue-jquery-mask)
87

9-
Vue.js v2.x component for [jQuery Mask Plugin](https://github.com/igorescobar/jQuery-Mask-Plugin)
8+
Vue.js component for [jQuery Mask Plugin](https://github.com/igorescobar/jQuery-Mask-Plugin)
109

1110
## Demo on [JSFiddle](https://jsfiddle.net/ankurk91/d92xgzhL/)
1211

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@
3535
"jquery-mask-plugin": "^1.14.15"
3636
},
3737
"devDependencies": {
38-
"@babel/core": "^7.1.6",
39-
"@babel/preset-env": "^7.1.6",
38+
"@babel/core": "^7.2.2",
39+
"@babel/preset-env": "^7.2.0",
4040
"babel-loader": "^8.0.4",
4141
"bootstrap": "^4.1.2",
4242
"clean-webpack-plugin": "^1.0.0",
4343
"cross-env": "^5.1.6",
44-
"css-loader": "^1.0.1",
44+
"css-loader": "^2.0.1",
4545
"file-loader": "^2.0.0",
4646
"html-webpack-plugin": "^3.2.0",
4747
"jquery": "^3.3.1",
4848
"style-loader": "^0.23.1",
4949
"unminified-webpack-plugin": "^2.0.0",
50-
"vee-validate": "^2.1.3",
51-
"vue": "^2.5.13",
50+
"vee-validate": "^2.1.4",
51+
"vue": "^2.5.21",
5252
"vue-loader": "^15.2.2",
53-
"vue-template-compiler": "^2.5.13",
54-
"webpack": "^4.26.1",
53+
"vue-template-compiler": "^2.5.21",
54+
"webpack": "^4.27.1",
5555
"webpack-cli": "^3.1.2",
5656
"webpack-dev-server": "^3.1.10"
5757
},

webpack.config.dev.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ module.exports = {
5858
test: /\.jpe?g$|\.gif$|\.png$/i,
5959
loader: 'file-loader',
6060
options: {
61-
name: '[path][name]-[hash].[ext]',
61+
name: '[path][name]-[hash:8].[ext]',
6262
}
6363
},
6464
{
6565
test: /\.(woff|woff2|eot|ttf|svg)(\?.*$|$)/,
6666
loader: 'file-loader',
6767
options: {
68-
name: '[path][name]-[hash].[ext]',
68+
name: '[path][name]-[hash:8].[ext]',
6969
}
7070
}
7171
]

webpack.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ module.exports = {
6666
terserOptions: {
6767
output: {
6868
beautify: false,
69-
safari10: true,
7069
},
7170
compress: {
7271
drop_debugger: true,

0 commit comments

Comments
 (0)