xs-dev 0.25.5 → 0.25.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +53 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xs-dev",
3
- "version": "0.25.5",
3
+ "version": "0.25.7",
4
4
  "description": "CLI for automating the setup and usage of Moddable XS tools",
5
5
  "types": "build/types/types.d.ts",
6
6
  "bin": {
@@ -74,7 +74,7 @@
74
74
  "eslint-plugin-promise": "^5.2.0",
75
75
  "jest": "^27.4.7",
76
76
  "prettier": "^2.5.1",
77
- "release-it": "^15.6.0",
77
+ "release-it": "^15.11.0",
78
78
  "rollup": "^2.78.1",
79
79
  "tailwindcss": "^3.0.24",
80
80
  "ts-jest": "^27.1.2",
@@ -100,7 +100,8 @@
100
100
  "ejs@<3.1.7": ">=3.1.7",
101
101
  "ansi-regex@>=3.0.0 <3.0.1": ">=3.0.1",
102
102
  "ansi-regex@>=4.0.0 <4.1.1": ">=4.1.1",
103
- "minimatch@<3.0.5": ">=3.0.5"
103
+ "minimatch@<3.0.5": ">=3.0.5",
104
+ "conventional-changelog-conventionalcommits": ">=5.0.0"
104
105
  }
105
106
  },
106
107
  "release-it": {
@@ -108,12 +109,59 @@
108
109
  "commitMessage": "chore: release v${version} [skip ci]"
109
110
  },
110
111
  "github": {
111
- "release": true
112
+ "release": true,
113
+ "comments": true
112
114
  },
113
115
  "plugins": {
114
116
  "@release-it/conventional-changelog": {
115
117
  "preset": "conventionalcommits",
116
- "infile": "CHANGELOG.md"
118
+ "infile": "CHANGELOG.md",
119
+ "types": [
120
+ {
121
+ "section": "Features",
122
+ "type": "feat"
123
+ },
124
+ {
125
+ "section": "Bug fixes",
126
+ "type": "fix"
127
+ },
128
+ {
129
+ "section": "Documentation",
130
+ "type": "docs"
131
+ },
132
+ {
133
+ "section": "Styles",
134
+ "type": "style"
135
+ },
136
+ {
137
+ "section": "Code refactoring",
138
+ "type": "refactor"
139
+ },
140
+ {
141
+ "section": "Performance improvements",
142
+ "type": "perf"
143
+ },
144
+ {
145
+ "section": "Tests",
146
+ "type": "test"
147
+ },
148
+ {
149
+ "section": "Builds",
150
+ "type": "build"
151
+ },
152
+ {
153
+ "section": "Continuous integrations",
154
+ "type": "ci"
155
+ },
156
+ {
157
+ "section": "Chores",
158
+ "type": "chore"
159
+ },
160
+ {
161
+ "section": "Reverts",
162
+ "type": "revert"
163
+ }
164
+ ]
117
165
  }
118
166
  }
119
167
  }