Skip to content

Commit 3ff781d

Browse files
committed
chore(deps): update dependencies
1 parent 0f20447 commit 3ff781d

File tree

4 files changed

+3113
-144
lines changed

4 files changed

+3113
-144
lines changed

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"express-jwt": "6.0.0",
3434
"jsonwebtoken": "8.5.1",
3535
"npm-run-all": "4.1.5",
36-
"typescript": "3.9.6",
36+
"typescript": "3.9.7",
3737
"vue-template-compiler": "2.6.11"
3838
}
3939
}

demo/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8384,10 +8384,10 @@ typedarray@^0.0.6:
83848384
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
83858385
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
83868386

8387-
typescript@3.9.6:
8388-
version "3.9.6"
8389-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.6.tgz#8f3e0198a34c3ae17091b35571d3afd31999365a"
8390-
integrity sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==
8387+
typescript@3.9.7:
8388+
version "3.9.7"
8389+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"
8390+
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
83918391

83928392
uglify-js@3.4.x:
83938393
version "3.4.10"

package.json

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
"docs:build": "cross-env NODE_ENV=production vue-cli-service docs --mode build",
1818
"docs:deploy": "cross-env BASE_DOCS=/vue-auth-plugin/ yarn docs:build && gh-pages -d docs/.vuepress/dist",
1919
"docs:serve": "vue-cli-service docs --mode serve",
20-
"postversion": "git push --follow-tags",
2120
"test": "vue-cli-service test:unit",
2221
"test:coverage": "yarn test --coverage",
23-
"test:send-coverages": "yarn coverage:codecovs && yarn coverage:coveralls && yarn coverage:codacy"
22+
"test:send-coverages": "yarn coverage:codecovs && yarn coverage:coveralls && yarn coverage:codacy",
23+
"commit": "git-cz",
24+
"semantic-release": "semantic-release",
25+
"postversion": "git commit -am 'chore(bump): bump version [skip-ci]' && git push --follow-tags"
2426
},
2527
"main": "dist/vue-auth-plugin.common.js",
2628
"module": "dist/vue-auth-plugin.esm.js",
@@ -37,18 +39,25 @@
3739
"vue-router": "3.3.4"
3840
},
3941
"devDependencies": {
40-
"@types/jest": "26.0.4",
42+
"@semantic-release/changelog": "5.0.1",
43+
"@semantic-release/commit-analyzer": "8.0.1",
44+
"@semantic-release/git": "9.0.0",
45+
"@semantic-release/github": "7.0.7",
46+
"@semantic-release/npm": "7.0.5",
47+
"@semantic-release/release-notes-generator": "9.0.1",
48+
"@types/jest": "26.0.5",
4149
"@vue/cli-plugin-babel": "4.4.6",
4250
"@vue/cli-plugin-typescript": "4.4.6",
4351
"@vue/cli-plugin-unit-jest": "4.4.6",
4452
"@vue/cli-plugin-vuex": "4.4.6",
4553
"@vue/cli-service": "4.4.6",
4654
"@vue/test-utils": "1.0.3",
4755
"axios": "0.19.2",
48-
"axios-mock-adapter": "1.18.1",
56+
"axios-mock-adapter": "1.18.2",
4957
"babel-core": "7.0.0-bridge.0",
5058
"codacy-coverage": "3.4.0",
51-
"codecov": "3.7.0",
59+
"codecov": "3.7.1",
60+
"commitizen": "^4.1.2",
5261
"coveralls": "3.1.0",
5362
"cross-env": "7.0.2",
5463
"gh-pages": "3.1.0",
@@ -57,10 +66,11 @@
5766
"jest-junit": "11.0.1",
5867
"jest-sonar-reporter": "2.0.0",
5968
"js-cookie": "2.2.1",
69+
"semantic-release": "^17.1.1",
6070
"sonar-scanner": "3.1.0",
61-
"ts-jest": "26.1.1",
71+
"ts-jest": "26.1.3",
6272
"ts-node": "8.10.2",
63-
"typescript": "3.9.6",
73+
"typescript": "3.9.7",
6474
"vue": "2.6.11",
6575
"vue-axios": "2.1.5",
6676
"vue-cli-plugin-p11n": "0.4.0",
@@ -93,5 +103,12 @@
93103
"license": "MIT",
94104
"repository": "https://github.com/d0whc3r/vue-auth-plugin",
95105
"sideeffects": false,
96-
"types": "types/index.d.ts"
106+
"types": "types/index.d.ts",
107+
"publishConfig": {
108+
"registry": "https://registry.npmjs.org",
109+
"access": "public"
110+
},
111+
"czConfig": {
112+
"path": "node_modules/cz-conventional-changelog"
113+
}
97114
}

0 commit comments

Comments
 (0)