From 2e883a603c491f9bb269e1f1619a2c3ea1be07d0 Mon Sep 17 00:00:00 2001 From: Denis Forveille Date: Thu, 22 Aug 2019 15:53:56 -0400 Subject: [PATCH] fix npm publish --- .npmignore | 1 - README.md | 2 +- package.json | 8 +++++--- 3 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 .npmignore diff --git a/.npmignore b/.npmignore deleted file mode 100644 index aa8e45f..0000000 --- a/.npmignore +++ /dev/null @@ -1 +0,0 @@ -src/ \ No newline at end of file diff --git a/README.md b/README.md index c051f75..15876d3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -### @titou10titoui10/v-mask +### @titou10/v-mask **A vue.js package that provides a directive to apply a mask to input tags** This package has been created after the`"mask"` property of the`"v-text-field"`component has been removed and I was not able to find another package that allow to **retrieve the masked and unmasked value** of an input text from a directive diff --git a/package.json b/package.json index d9c3026..c77b126 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,17 @@ { "name": "@titou10/v-mask", "description": "mask directive for vue.js that exposes the unmasked value", - "version": "0.9.0", + "version": "0.9.2", "author": "Denis Forveille ", "license": "MIT", "keywords": [ "vue", - "diretive", - "mask" + "directive", + "mask", + "v-mask" ], "main": "dist/index.js", + "files": ["dist"], "scripts": { "build": "tsc", "watch": "tsc --watch",