xs-dev 0.25.6 → 0.25.8

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.
@@ -0,0 +1,10 @@
1
+ ---
2
+ title: 'Introduction to xs-dev (legacy page)'
3
+ head:
4
+ - tag: meta
5
+ attrs:
6
+ content: "3;url=/"
7
+ http-equiv: refresh
8
+ ---
9
+
10
+ See the [new homepage](/)!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xs-dev",
3
- "version": "0.25.6",
3
+ "version": "0.25.8",
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": {
@@ -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": {
@@ -114,7 +115,53 @@
114
115
  "plugins": {
115
116
  "@release-it/conventional-changelog": {
116
117
  "preset": "conventionalcommits",
117
- "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
+ ]
118
165
  }
119
166
  }
120
167
  }