From d747ce29dfe976c1faa63386cff8fe0c91041fc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=BA=E6=99=BA=E7=9A=84=E5=B0=8F=E9=B1=BC=E5=90=9B?= Date: Sat, 2 Oct 2021 01:07:19 +0800 Subject: [PATCH] chore: bump version (bump version: 0.0.1) --- .prettierrc | 11 ++++++++ package.json | 9 ++++--- src/App.vue | 18 ++++++++----- src/view/index.vue | 65 ++++++++++++++++++++++++++++++---------------- yarn.lock | 53 +++++++++++++++++++++++++++++++++++++ 5 files changed, 124 insertions(+), 32 deletions(-) create mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..d7f6f3c --- /dev/null +++ b/.prettierrc @@ -0,0 +1,11 @@ +{ + "tabWidth": 2, + "useTabs": false, + "semi": false, + "singleQuote": true, + "quoteProps": "as-needed", + "trailingComma": "es5", + "bracketSpacing": true, + "arrowParens": "always", + "printWidth": 80 +} \ No newline at end of file diff --git a/package.json b/package.json index 87ee2a8..e2a85b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "short-now", - "version": "0.0.0", + "version": "0.0.1", "description": "Short URL Service", "main": "index.js", "repository": "git@github.com:FreeNowOrg/ShortNow.git", @@ -10,7 +10,8 @@ "scripts": { "start": "vite", "serve": "vercel dev", - "build": "vite build" + "build": "vite build", + "bump": "bump --nopublish" }, "dependencies": { "axios": "^0.21.1", @@ -19,6 +20,7 @@ "vue-router": "^4.0.10" }, "devDependencies": { + "@dragon-fish/bump": "^0.0.15", "@types/nprogress": "^0.2.0", "@vitejs/plugin-vue": "^1.3.0", "@vue/compiler-sfc": "^3.1.5", @@ -27,8 +29,9 @@ "pug": "^3.0.2", "querystring": "^0.2.1", "sass": "^1.37.0", + "sensitive-word-filter": "^1.0.2", "typescript": "^4.3.5", "vercel": "^23.0.1", "vite": "^2.4.4" } -} +} \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index e2d00cc..dac98a8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,18 +7,18 @@ NProgress diff --git a/src/view/index.vue b/src/view/index.vue index 0fafe52..ca1d7ab 100644 --- a/src/view/index.vue +++ b/src/view/index.vue @@ -1,29 +1,43 @@