Skip to content

Commit

Permalink
build(release-it): add package to release new builds
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
ph1p committed Nov 25, 2019
1 parent 2f891b0 commit 440345a
Show file tree
Hide file tree
Showing 5 changed files with 1,226 additions and 407 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
example/
src/
tests/
coverage/
coverage/
.release-it.json
17 changes: 17 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"git": {
"commitMessage": "chore: release %s",
"tagName": "v%s"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
1 change: 0 additions & 1 deletion example/documentation/code/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
title: test
---
# grid

This is an example of creating a reusable grid component and using it with external data.

::: tip Tags
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"description": "Generate jsdoc markdown files for vuepress",
"main": "index.js",
"scripts": {
"release": "release-it",
"test": "jest",
"test-coverage": "cross-env NODE_ENV=test jest --coverage",
"test-watch": "cross-env NODE_ENV=test jest --watchAll",
"lint": "eslint ./*/*.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
"lint": "eslint ./*/*.js"
},
"husky": {
"hooks": {
Expand Down Expand Up @@ -76,11 +76,12 @@
"yargs": "^15.0.2"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.28",
"eslint": "^6.6.0",
"@release-it/conventional-changelog": "^1.1.0",
"eslint": "^6.7.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.4.3"
"lint-staged": "^9.4.3",
"release-it": "^12.4.3"
},
"lint-staged": {
"**/*.{css,scss,json}": [
Expand Down
Loading

0 comments on commit 440345a

Please sign in to comment.