This commit is contained in:
Andrey Nering
2022-09-29 22:01:16 -03:00
parent 219d3ad193
commit 5d22cf4327
4 changed files with 12 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## Unreleased ## v3.16.0 - 2022-09-29
- Add `npm` as new installation method: `npm i -g @go-task/cli` - Add `npm` as new installation method: `npm i -g @go-task/cli`
([#870](https://github.com/go-task/task/issues/870), [#871](https://github.com/go-task/task/pull/871), [npm package](https://www.npmjs.com/package/@go-task/cli)). ([#870](https://github.com/go-task/task/issues/870), [#871](https://github.com/go-task/task/pull/871), [npm package](https://www.npmjs.com/package/@go-task/cli)).

View File

@@ -5,6 +5,14 @@ sidebar_position: 6
# Changelog # Changelog
## v3.16.0 - 2022-09-29
- Add `npm` as new installation method: `npm i -g @go-task/cli`
([#870](https://github.com/go-task/task/issues/870), [#871](https://github.com/go-task/task/pull/871), [npm package](https://www.npmjs.com/package/@go-task/cli)).
- Add support to marking tasks and includes as internal, which will hide them
from `--list` and `--list-all`
([#818](https://github.com/go-task/task/pull/818)).
## v3.15.2 - 2022-09-08 ## v3.15.2 - 2022-09-08
- Fix error when using variable in `env:` introduced in the previous release - Fix error when using variable in `env:` introduced in the previous release

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.15.2", "version": "3.16.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.15.2", "version": "3.16.0",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@go-task/cli", "name": "@go-task/cli",
"version": "3.15.2", "version": "3.16.0",
"description": "A task runner / simpler Make alternative written in Go", "description": "A task runner / simpler Make alternative written in Go",
"scripts": { "scripts": {
"postinstall": "go-npm install", "postinstall": "go-npm install",