From db30f503730bdbd8ed359d4070dea0214df67fcd Mon Sep 17 00:00:00 2001 From: Artem Chernyshev Date: Fri, 5 Nov 2021 15:14:06 +0300 Subject: [PATCH] fix: add `frontend/node_modules` to gitignore This folder is now created by `dev-server` command, so it should be added to `.gitignore`. Signed-off-by: Artem Chernyshev --- .babelrc | 2 +- .conform.yaml | 8 +++----- .gitignore | 3 ++- .jestrc | 2 +- internal/frontend/frontend.go | 2 +- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.babelrc b/.babelrc index 9e17475..f997839 100644 --- a/.babelrc +++ b/.babelrc @@ -1,6 +1,6 @@ // THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. // -// Generated on 2021-10-26T14:12:56Z by kres 83904ad-dirty. +// Generated on 2021-11-05T12:13:36Z by kres 6a46ad7-dirty. module.exports = { presets: [ diff --git a/.conform.yaml b/.conform.yaml index 267a423..c301611 100644 --- a/.conform.yaml +++ b/.conform.yaml @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2021-10-22T16:23:42Z by kres f6c7130-dirty. +# Generated on 2021-11-05T12:13:36Z by kres 6a46ad7-dirty. --- policies: @@ -28,12 +28,10 @@ policies: spec: skipPaths: - .git/ + - testdata/ includeSuffixes: - .go excludeSuffixes: - .pb.go - .pb.gw.go - header: | - // This Source Code Form is subject to the terms of the Mozilla Public - // License, v. 2.0. If a copy of the MPL was not distributed with this - // file, You can obtain one at http://mozilla.org/MPL/2.0/. + header: "// This Source Code Form is subject to the terms of the Mozilla Public\u000A// License, v. 2.0. If a copy of the MPL was not distributed with this\u000A// file, You can obtain one at http://mozilla.org/MPL/2.0/.\u000A" diff --git a/.gitignore b/.gitignore index fab5e93..a6b0a4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2020-09-23T21:48:27Z by kres ce6bee5-dirty. +# Generated on 2021-11-05T12:13:36Z by kres 6a46ad7-dirty. _out +frontend/node_modules diff --git a/.jestrc b/.jestrc index c7dd79b..ab71e39 100644 --- a/.jestrc +++ b/.jestrc @@ -1,6 +1,6 @@ // THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. // -// Generated on 2021-10-26T14:12:56Z by kres 83904ad-dirty. +// Generated on 2021-11-05T12:13:36Z by kres 6a46ad7-dirty. module.exports = { preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel/', diff --git a/internal/frontend/frontend.go b/internal/frontend/frontend.go index fabb2f3..f829a81 100644 --- a/internal/frontend/frontend.go +++ b/internal/frontend/frontend.go @@ -4,7 +4,7 @@ // THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. // -// Generated on 2021-10-26T14:12:56Z by kres 83904ad-dirty. +// Generated on 2021-11-05T12:13:36Z by kres 6a46ad7-dirty. package frontend