From 273ff95ed5e44b5aa85b9ba4692c83927bdac4ca Mon Sep 17 00:00:00 2001 From: Vladimir Vagaytsev Date: Thu, 16 Nov 2023 11:23:23 +0100 Subject: [PATCH] chore(release): bump version to 0.13.20 --- CHANGELOG.md | 28 +++++++++++++++++++ README.md | 2 +- cli/package.json | 4 +-- core/package.json | 4 +-- docs/getting-started/quickstart.md | 2 +- docs/guides/using-garden-in-ci.md | 2 +- .../k8s-plugins/remote-k8s/ingress-and-dns.md | 2 +- .../action-types/Build/jib-container.md | 2 +- docs/reference/module-types/jib-container.md | 2 +- .../providers/conftest-kubernetes.md | 2 +- docs/reference/providers/conftest.md | 2 +- docs/reference/providers/hadolint.md | 2 +- docs/reference/providers/jib.md | 2 +- docs/terraform-plugin/about.md | 4 +-- docs/terraform-plugin/configure-provider.md | 2 +- e2e/package.json | 4 +-- package.json | 4 +-- plugins/conftest-container/package.json | 4 +-- plugins/conftest-kubernetes/package.json | 4 +-- plugins/conftest/package.json | 4 +-- plugins/jib/package.json | 4 +-- plugins/pulumi/package.json | 4 +-- plugins/terraform/package.json | 4 +-- sdk/package.json | 4 +-- 24 files changed, 63 insertions(+), 35 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c9e94a98f..187e4ca8fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,32 @@ + +## [0.13.20](https://github.com/garden-io/garden/compare/0.13.19...0.13.20) (2023-11-16) + +### Bug Fixes + +* windows file tree ([#5364](https://github.com/garden-io/garden/issues/5364)) ([c5c3c66f4](https://github.com/garden-io/garden/commit/c5c3c66f4)) +* always resolve symlinks for the executable path in the self-updater ([#5352](https://github.com/garden-io/garden/issues/5352)) ([7ee19dd72](https://github.com/garden-io/garden/commit/7ee19dd72)) +* **examples:** fix typo in k8s example + fix comment ([#5337](https://github.com/garden-io/garden/issues/5337)) ([098d59ea4](https://github.com/garden-io/garden/commit/098d59ea4)) +* **garden-sea:** resolve symlinks for GARDEN_SEA_EXECUTABLE_PATH ([#5353](https://github.com/garden-io/garden/issues/5353)) ([aba79f50d](https://github.com/garden-io/garden/commit/aba79f50d)) +* **sync-mode:** avoid collisions in sync key prefixes ([#5409](https://github.com/garden-io/garden/issues/5409)) ([9edc9ac78](https://github.com/garden-io/garden/commit/9edc9ac78)) +* **sync-mode:** use the same source path schemas for all action types ([#5363](https://github.com/garden-io/garden/issues/5363)) ([71b3781cb](https://github.com/garden-io/garden/commit/71b3781cb)) + +### Features + +* change default git scan mode to `repo` ([#5399](https://github.com/garden-io/garden/issues/5399)) ([da3f68fcb](https://github.com/garden-io/garden/commit/da3f68fcb)) +* **k8s:** add service account and irsa support for in-cluster-builder ([#3384](https://github.com/garden-io/garden/issues/3384)) ([9f6b137d6](https://github.com/garden-io/garden/commit/9f6b137d6)) + +### Improvements + +* **core:** log aborted nodes on dep error ([#5360](https://github.com/garden-io/garden/issues/5360)) ([ce1995bc8](https://github.com/garden-io/garden/commit/ce1995bc8)) +* **git:** don't require Garden `static` dir to be a Git repo ([#5120](https://github.com/garden-io/garden/issues/5120)) ([dc8ba20ac](https://github.com/garden-io/garden/commit/dc8ba20ac)) +* **k8s:** remove old system garden and improve local-k8s startup time ([#5136](https://github.com/garden-io/garden/issues/5136)) ([875cacb1f](https://github.com/garden-io/garden/commit/875cacb1f)) +* **sync:** always use short hash-based tmp dirs paths ([#5413](https://github.com/garden-io/garden/issues/5413)) ([453ed6a30](https://github.com/garden-io/garden/commit/453ed6a30)) + +### Performance Improvements + +* do not compute log message until required ([#5410](https://github.com/garden-io/garden/issues/5410)) ([14e713bff](https://github.com/garden-io/garden/commit/14e713bff)) + ## [0.13.19](https://github.com/garden-io/garden/compare/0.13.18...0.13.19) (2023-11-04) diff --git a/README.md b/README.md index a18430825d..1716730cc3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _If you love Garden, please ★ star this repository to show your support :green   •   Docs   •   - Examples + Examples   •   Blog   •   diff --git a/cli/package.json b/cli/package.json index e002e5273f..e53518aebc 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/cli", - "version": "0.13.19", + "version": "0.13.20", "description": "Cloud native testing platform for testing and developing container applications on Kubernetes", "type": "module", "repository": { @@ -59,4 +59,4 @@ "lint": "eslint --ext .ts src/", "test": "mocha" } -} +} \ No newline at end of file diff --git a/core/package.json b/core/package.json index 2e2c7dc7ce..9a05731b8d 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/core", - "version": "0.13.19", + "version": "0.13.20", "description": "A full-featured development framework for containers and serverless", "type": "module", "repository": { @@ -276,4 +276,4 @@ "fsevents": "^2.3.3" }, "gitHead": "b0647221a4d2ff06952bae58000b104215aed922" -} +} \ No newline at end of file diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md index 31126f6290..71d21d9243 100644 --- a/docs/getting-started/quickstart.md +++ b/docs/getting-started/quickstart.md @@ -116,6 +116,6 @@ If you'd like to better understand how a Garden project is configured, we recomm through our [first project tutorial](../tutorials/your-first-project/README.md) which walks you through configuring a Garden project step-by-step. If you like to dive right in and configure your own project for Garden, we recommend referencing our [example -projects on GitHub](https://github.com/garden-io/garden/tree/0.13.19/examples) and the section of our docs title [Using Garden](../using-garden/configuration-overview.md), which covers all parts of Garden in detail. +projects on GitHub](https://github.com/garden-io/garden/tree/0.13.20/examples) and the section of our docs title [Using Garden](../using-garden/configuration-overview.md), which covers all parts of Garden in detail. If you have any questions or feedback—or just want to say hi 🙂—we encourage you to join our [Discord community](https://go.garden.io/discord)! diff --git a/docs/guides/using-garden-in-ci.md b/docs/guides/using-garden-in-ci.md index b6d0f9620e..9816615ada 100644 --- a/docs/guides/using-garden-in-ci.md +++ b/docs/guides/using-garden-in-ci.md @@ -28,7 +28,7 @@ The guide uses the [Remote Kubernetes plugin](../k8s-plugins/remote-k8s/README.m ## Project overview -The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.13.19/examples/demo-project) example, but configured for multiple environments. Additionally it contains a CircleCI config file. You'll find the entire source code [here](https://github.com/garden-io/ci-demo-project). +The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.13.20/examples/demo-project) example, but configured for multiple environments. Additionally it contains a CircleCI config file. You'll find the entire source code [here](https://github.com/garden-io/ci-demo-project). The CI pipeline is configured so that Garden tests the project and deploys it to a **preview** environment on every pull request. Additionally, it tests the project and deploys it to a separate **staging** environment on every merge to the `main` branch. diff --git a/docs/k8s-plugins/remote-k8s/ingress-and-dns.md b/docs/k8s-plugins/remote-k8s/ingress-and-dns.md index d558c393b1..b223273306 100644 --- a/docs/k8s-plugins/remote-k8s/ingress-and-dns.md +++ b/docs/k8s-plugins/remote-k8s/ingress-and-dns.md @@ -5,7 +5,7 @@ order: 3 # 3. Set Up Ingress, TLS and DNS -By default, Garden will not install an ingress controller for remote environments. This can be toggled by setting the [`setupIngressController` flag](../../reference/providers/kubernetes.md#providerssetupingresscontroller) to `nginx`. Alternatively, you can set up your own ingress controller, e.g. using [Traefik](https://traefik.io/), [Ambassador](https://www.getambassador.io/) or [Istio](https://istio.io/). You can find an example for [using Garden with Istio](https://github.com/garden-io/garden/tree/0.13.19/examples/istio) in our [examples directory](https://github.com/garden-io/garden/tree/0.13.19/examples). +By default, Garden will not install an ingress controller for remote environments. This can be toggled by setting the [`setupIngressController` flag](../../reference/providers/kubernetes.md#providerssetupingresscontroller) to `nginx`. Alternatively, you can set up your own ingress controller, e.g. using [Traefik](https://traefik.io/), [Ambassador](https://www.getambassador.io/) or [Istio](https://istio.io/). You can find an example for [using Garden with Istio](https://github.com/garden-io/garden/tree/0.13.20/examples/istio) in our [examples directory](https://github.com/garden-io/garden/tree/0.13.20/examples). You'll also need to point one or more DNS entries to your cluster, and configure a TLS certificate for the hostnames you will expose for ingress. diff --git a/docs/reference/action-types/Build/jib-container.md b/docs/reference/action-types/Build/jib-container.md index e1b3e1435c..6d7edfc165 100644 --- a/docs/reference/action-types/Build/jib-container.md +++ b/docs/reference/action-types/Build/jib-container.md @@ -7,7 +7,7 @@ tocTitle: "`jib-container` Build" ## Description -Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.19/examples/jib-container) to see it in action. +Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.20/examples/jib-container) to see it in action. The image is always built locally, directly from the source directory (see the note on that below), before shipping the container image to the right place. You can set `build.tarOnly: true` to only build the image as a tarball. diff --git a/docs/reference/module-types/jib-container.md b/docs/reference/module-types/jib-container.md index e5262ebc43..5a98a0afeb 100644 --- a/docs/reference/module-types/jib-container.md +++ b/docs/reference/module-types/jib-container.md @@ -11,7 +11,7 @@ Modules are deprecated and will be removed in version `0.14`. Please use [action ## Description -Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.19/examples/jib-container) to see it in action. +Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.20/examples/jib-container) to see it in action. The image is always built locally, directly from the source directory (see the note on that below), before shipping the container image to the right place. You can set `build.tarOnly: true` to only build the image as a tarball. diff --git a/docs/reference/providers/conftest-kubernetes.md b/docs/reference/providers/conftest-kubernetes.md index 8d4a4fa761..6f5e4a4df4 100644 --- a/docs/reference/providers/conftest-kubernetes.md +++ b/docs/reference/providers/conftest-kubernetes.md @@ -14,7 +14,7 @@ Simply add this provider to your project configuration, and configure your polic reference for how to configure default policies, default namespaces, and test failure thresholds for the generated actions. -See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.19/examples/conftest) for a simple +See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.20/examples/conftest) for a simple usage example. Below is the full schema reference for the provider configuration. For an introduction to configuring a Garden project with providers, please look at our [configuration guide](../../using-garden/configuration-overview.md). diff --git a/docs/reference/providers/conftest.md b/docs/reference/providers/conftest.md index f657c27458..8c7d0d900f 100644 --- a/docs/reference/providers/conftest.md +++ b/docs/reference/providers/conftest.md @@ -9,7 +9,7 @@ tocTitle: "`conftest`" This provider allows you to validate your configuration files against policies that you specify, using the [conftest tool](https://github.com/open-policy-agent/conftest) and Open Policy Agent rego query files. The provider creates Test action types of the same name, which allow you to specify files to validate. -Note that, in many cases, you'll actually want to use more specific providers that can automatically configure your `conftest` actions, e.g. the [`conftest-container`](./conftest-container.md) and/or [`conftest-kubernetes`](./conftest-kubernetes.md) providers. See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.19/examples/conftest) for a simple usage example of the latter. +Note that, in many cases, you'll actually want to use more specific providers that can automatically configure your `conftest` actions, e.g. the [`conftest-container`](./conftest-container.md) and/or [`conftest-kubernetes`](./conftest-kubernetes.md) providers. See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.20/examples/conftest) for a simple usage example of the latter. If those don't match your needs, you can use this provider directly and manually configure your `conftest` actions. Simply add this provider to your project configuration, and see the [conftest action documentation](../action-types/Test/conftest.md) for a detailed reference. Also, check out the below reference for how to configure default policies, default namespaces, and test failure thresholds for all `conftest` actions. diff --git a/docs/reference/providers/hadolint.md b/docs/reference/providers/hadolint.md index 6b7dbd6fc9..99e8fc333d 100644 --- a/docs/reference/providers/hadolint.md +++ b/docs/reference/providers/hadolint.md @@ -11,7 +11,7 @@ This provider creates a [`hadolint`](../action-types/Test/hadolint.md) Test acti To configure `hadolint`, you can use `.hadolint.yaml` config files. For each Test, we first look for one in the relevant action's root. If none is found there, we check the project root, and if none is there we fall back to default configuration. Note that for reasons of portability, we do not fall back to global/user configuration files. -See the [hadolint docs](https://github.com/hadolint/hadolint#configure) for details on how to configure it, and the [hadolint example project](https://github.com/garden-io/garden/tree/0.13.19/examples/hadolint) for a usage example. +See the [hadolint docs](https://github.com/hadolint/hadolint#configure) for details on how to configure it, and the [hadolint example project](https://github.com/garden-io/garden/tree/0.13.20/examples/hadolint) for a usage example. Below is the full schema reference for the provider configuration. For an introduction to configuring a Garden project with providers, please look at our [configuration guide](../../using-garden/configuration-overview.md). diff --git a/docs/reference/providers/jib.md b/docs/reference/providers/jib.md index 9bf3226e0f..75d6ecef46 100644 --- a/docs/reference/providers/jib.md +++ b/docs/reference/providers/jib.md @@ -11,7 +11,7 @@ tocTitle: "`jib`" Provides support for [Jib](https://github.com/GoogleContainerTools/jib) via the [jib action type](../action-types/Build/jib-container.md). -Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.19/examples/jib-container) to see it in action. +Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.20/examples/jib-container) to see it in action. Below is the full schema reference for the provider configuration. For an introduction to configuring a Garden project with providers, please look at our [configuration guide](../../using-garden/configuration-overview.md). diff --git a/docs/terraform-plugin/about.md b/docs/terraform-plugin/about.md index da302c2ffb..626d24c295 100644 --- a/docs/terraform-plugin/about.md +++ b/docs/terraform-plugin/about.md @@ -15,7 +15,7 @@ Under the hood, Garden simply wraps Terraform, so there's no magic involved. Gar Terraform resources can be provisioned through the `terraform` provider when initializing Garden, or via `terraform` actions that are utilized like other actions in your stack. -The former, having a single Terraform stack for your whole project, is most helpful if other provider configurations need to reference the outputs from your Terraform stack, or if most/all of your services depend on the infrastructure provisioned in your Terraform stack. A good example of this is the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.19/examples/terraform-gke) project, which provisions a GKE cluster that the `kubernetes` provider then runs on, along with the services in the project. The drawback is that Garden doesn't currently watch for changes in those Terraform files, and you need to restart to apply new changes, or apply them manually. +The former, having a single Terraform stack for your whole project, is most helpful if other provider configurations need to reference the outputs from your Terraform stack, or if most/all of your services depend on the infrastructure provisioned in your Terraform stack. A good example of this is the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.20/examples/terraform-gke) project, which provisions a GKE cluster that the `kubernetes` provider then runs on, along with the services in the project. The drawback is that Garden doesn't currently watch for changes in those Terraform files, and you need to restart to apply new changes, or apply them manually. Using `terraform` _Deploy actions_, can be better if your other providers don't need to reference the stack outputs but other Deploy, Run and Test actions do. In this style, you can basically create small Terraform stacks that are part of your Stack Graph much like other services. A good example would be deploying a database instance, that other services in your project can then connect to. @@ -87,6 +87,6 @@ Now when you deploy a new Terraformed environment, the new backend statefile wil ## Next steps -Check out the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.19/examples/terraform-gke) project. Also take a look at the [Terraform provider reference](../reference/providers/terraform.md) and the [Terraform Deploy action type reference](../reference/action-types/Deploy/terraform.md) for details on all the configuration parameters. +Check out the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.20/examples/terraform-gke) project. Also take a look at the [Terraform provider reference](../reference/providers/terraform.md) and the [Terraform Deploy action type reference](../reference/action-types/Deploy/terraform.md) for details on all the configuration parameters. If you're having issues with Terraform itself, please refer to the [official docs](https://www.terraform.io/docs/index.html). diff --git a/docs/terraform-plugin/configure-provider.md b/docs/terraform-plugin/configure-provider.md index 845d8fba09..7c72a27470 100644 --- a/docs/terraform-plugin/configure-provider.md +++ b/docs/terraform-plugin/configure-provider.md @@ -17,7 +17,7 @@ providers: ... ``` -If you'd like to apply the stack when starting Garden, and then reference the stack outputs in other providers (or actions), you need to add a couple of more flags. Here's the project config from the aforementioned [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.19/examples/terraform-gke): +If you'd like to apply the stack when starting Garden, and then reference the stack outputs in other providers (or actions), you need to add a couple of more flags. Here's the project config from the aforementioned [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.20/examples/terraform-gke): ```yaml apiVersion: garden.io/v1 diff --git a/e2e/package.json b/e2e/package.json index 90d5cf47e1..779c437020 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/e2e", - "version": "0.13.19", + "version": "0.13.20", "description": "End-to-end tests for the Garden CLI", "type": "module", "repository": { @@ -53,4 +53,4 @@ "fix-format": "npm run lint -- --fix --quiet", "lint": "eslint --ignore-pattern 'projects/**' --ext .ts ." } -} +} \ No newline at end of file diff --git a/package.json b/package.json index b01f84737c..e53b2fc289 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "git", "url": "git+https://github.com/garden-io/garden.git" }, - "version": "0.13.19", + "version": "0.13.20", "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden", @@ -111,4 +111,4 @@ "sdk", "plugins/*" ] -} +} \ No newline at end of file diff --git a/plugins/conftest-container/package.json b/plugins/conftest-container/package.json index 2f2da79ffe..d46f63b8ab 100644 --- a/plugins/conftest-container/package.json +++ b/plugins/conftest-container/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/garden-conftest-container", - "version": "0.13.19", + "version": "0.13.20", "description": "Auto-generator for the conftest plugin and Garden container modules", "type": "module", "main": "build/src/index.js", @@ -31,4 +31,4 @@ "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden" -} +} \ No newline at end of file diff --git a/plugins/conftest-kubernetes/package.json b/plugins/conftest-kubernetes/package.json index 8017736666..92f1e6703c 100644 --- a/plugins/conftest-kubernetes/package.json +++ b/plugins/conftest-kubernetes/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/garden-conftest-kubernetes", - "version": "0.13.19", + "version": "0.13.20", "description": "Auto-generator for the conftest plugin and Garden kubernetes/helm modules", "type": "module", "main": "build/src/index.js", @@ -31,4 +31,4 @@ "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden" -} +} \ No newline at end of file diff --git a/plugins/conftest/package.json b/plugins/conftest/package.json index 477997dd88..9bbde607e0 100644 --- a/plugins/conftest/package.json +++ b/plugins/conftest/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/garden-conftest", - "version": "0.13.19", + "version": "0.13.20", "description": "conftest plugin for Garden", "type": "module", "main": "build/src/index.js", @@ -30,4 +30,4 @@ "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden" -} +} \ No newline at end of file diff --git a/plugins/jib/package.json b/plugins/jib/package.json index 07bb8fd22b..116c68b596 100644 --- a/plugins/jib/package.json +++ b/plugins/jib/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/garden-jib", - "version": "0.13.19", + "version": "0.13.20", "description": "Jib container plugin for Garden", "type": "module", "main": "build/src/index.js", @@ -36,4 +36,4 @@ "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden" -} +} \ No newline at end of file diff --git a/plugins/pulumi/package.json b/plugins/pulumi/package.json index 617bf7cb27..9d1029028b 100644 --- a/plugins/pulumi/package.json +++ b/plugins/pulumi/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/garden-pulumi", - "version": "0.13.19", + "version": "0.13.20", "description": "Pulumi plugin for Garden", "type": "module", "main": "build/src/index.js", @@ -36,4 +36,4 @@ "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden" -} +} \ No newline at end of file diff --git a/plugins/terraform/package.json b/plugins/terraform/package.json index 191b59ffd9..caa11b5bfc 100644 --- a/plugins/terraform/package.json +++ b/plugins/terraform/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/garden-terraform", - "version": "0.13.19", + "version": "0.13.20", "description": "Terraform plugin for Garden", "type": "module", "main": "build/src/index.js", @@ -36,4 +36,4 @@ "author": "Garden Technologies, Inc. ", "license": "MPL-2.0", "homepage": "https://github.com/garden-io/garden" -} +} \ No newline at end of file diff --git a/sdk/package.json b/sdk/package.json index f2196fb94b..aad8ce3966 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@garden-io/sdk", - "version": "0.13.19", + "version": "0.13.20", "description": "TypeScript plugin SDK for Garden", "type": "module", "repository": { @@ -32,4 +32,4 @@ "fix-format": "npm run lint -- --fix --quiet", "lint": "eslint --ext .ts ." } -} +} \ No newline at end of file