release-it 15.0.0-esm.6 → 15.0.0
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.
- package/README.md +13 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,6 +20,11 @@ system, and hooks to execute any command you need to test, build, and/or publish
|
|
|
20
20
|
[](https://github.com/release-it/release-it/actions)
|
|
21
21
|
[](https://www.npmjs.com/package/release-it)
|
|
22
22
|
|
|
23
|
+
## Announcement
|
|
24
|
+
|
|
25
|
+
The latest major version is v15, supporting Node.js 14 and up (as Node.js v12 is EOL). Use release-it v14 for
|
|
26
|
+
environments running Node.js v10 and v12. Also see [CHANGELOG.md](./CHANGELOG.md).
|
|
27
|
+
|
|
23
28
|
## Links
|
|
24
29
|
|
|
25
30
|
- See [CHANGELOG.md](./CHANGELOG.md) for major/breaking updates, and
|
|
@@ -156,7 +161,8 @@ remote.
|
|
|
156
161
|
## GitHub Releases
|
|
157
162
|
|
|
158
163
|
GitHub projects can have releases attached to Git tags, containing release notes and assets. There are two ways to add
|
|
159
|
-
[GitHub releases](https://
|
|
164
|
+
[GitHub releases](https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases) in your
|
|
165
|
+
release-it flow:
|
|
160
166
|
|
|
161
167
|
1. Automated (requires a `GITHUB_TOKEN`)
|
|
162
168
|
2. Manual (using the GitHub web interface with pre-populated fields)
|
|
@@ -326,29 +332,22 @@ While mostly used as a CLI tool, release-it can be used as a dependency to integ
|
|
|
326
332
|
- [antonmedv/fx](https://github.com/antonmedv/fx)
|
|
327
333
|
- [blockchain/blockchain-wallet-v4-frontend](https://github.com/blockchain/blockchain-wallet-v4-frontend)
|
|
328
334
|
- [callstack/linaria](https://github.com/callstack/linaria)
|
|
335
|
+
- [callstack/react-native-paper](https://github.com/callstack/react-native-paper)
|
|
329
336
|
- [ember-cli/ember-cli](https://github.com/ember-cli/ember-cli)
|
|
330
|
-
- [metalsmith/metalsmith](https://github.com/metalsmith/metalsmith)
|
|
331
|
-
- [react-native-paper](https://github.com/callstack/react-native-paper)
|
|
332
337
|
- [js-cookie/js-cookie](https://github.com/js-cookie/js-cookie)
|
|
333
|
-
- [
|
|
338
|
+
- [metalsmith/metalsmith](https://github.com/metalsmith/metalsmith)
|
|
334
339
|
- [mozilla/readability](https://github.com/mozilla/readability)
|
|
335
340
|
- [redis/node-redis](https://github.com/redis/node-redis)
|
|
341
|
+
- [saleor/saleor](https://github.com/saleor/saleor)
|
|
336
342
|
- [shipshapecode/shepherd](https://github.com/shipshapecode/shepherd)
|
|
343
|
+
- [StevenBlack/hosts](https://github.com/StevenBlack/hosts)
|
|
337
344
|
- [swagger-api/swagger-ui](https://github.com/swagger-api/swagger-ui) +
|
|
338
345
|
[swagger-editor](https://github.com/swagger-api/swagger-editor)
|
|
339
|
-
- [StevenBlack/hosts](https://github.com/StevenBlack/hosts)
|
|
340
346
|
- [tabler/tabler](https://github.com/tabler/tabler) + [tabler-icons](https://github.com/tabler/tabler-icons)
|
|
341
347
|
- [youzan/vant](https://github.com/youzan/vant)
|
|
342
348
|
- [Repositories that depend on release-it](https://github.com/release-it/release-it/network/dependents)
|
|
343
349
|
- GitHub search for [filename:.release-it.json](https://github.com/search?q=filename%3A.release-it.json)
|
|
344
350
|
|
|
345
|
-
##
|
|
351
|
+
## License
|
|
346
352
|
|
|
347
|
-
|
|
348
|
-
- [GitHub Help](https://docs.github.com) (→
|
|
349
|
-
[About Releases](https://docs.github.com/free-pro-team@latest/github/administering-a-repository/about-releases))
|
|
350
|
-
- [npm Blog: Publishing what you mean to publish](https://blog.npmjs.org/post/165769683050/publishing-what-you-mean-to-publish)
|
|
351
|
-
- [npm Documentation: package.json](https://docs.npmjs.com/cli/v6/configuring-npm/package-json)
|
|
352
|
-
- [Prereleases and npm](https://medium.com/@mbostock/prereleases-and-npm-e778fc5e2420)
|
|
353
|
-
- [Glob Primer (node-glob)](https://github.com/isaacs/node-glob#glob-primer) (release-it uses
|
|
354
|
-
[globby](https://github.com/sindresorhus/globby#readme))
|
|
353
|
+
[MIT](./LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-it",
|
|
3
|
-
"version": "15.0.0
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "Generic CLI tool to automate versioning and package publishing related tasks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"build",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"git-url-parse": "11.6.0",
|
|
69
69
|
"globby": "13.1.1",
|
|
70
70
|
"got": "12.0.4",
|
|
71
|
-
"inquirer": "8.2.
|
|
71
|
+
"inquirer": "8.2.4",
|
|
72
72
|
"is-ci": "3.0.1",
|
|
73
73
|
"lodash": "4.17.21",
|
|
74
74
|
"mime-types": "2.1.35",
|