Skip to content

Commit 66ee24f

Browse files
authored
feat(internal): Add turborepo (#5519)
1 parent 8164037 commit 66ee24f

File tree

130 files changed

+238
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+238
-132
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ concurrency:
1313
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
1414
cancel-in-progress: true
1515

16+
env:
17+
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
18+
TURBO_TEAM: "buildwithfern"
19+
1620
jobs:
1721
lint:
1822
runs-on: ubuntu-latest

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# dependencies
44
node_modules
55

6+
# turbo
7+
.turbo
8+
69
# production
710
packages/**/build
811
packages/**/lib

generators/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"compile": "tsc --build",
2121
"test": "vitest --run",
2222
"test:update": "vitest --run -u",
23-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../.eslintignore",
23+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../.eslintignore",
2424
"lint:eslint:fix": "yarn lint:eslint --fix",
2525
"format": "prettier --write --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",
2626
"format:check": "prettier --check --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",

generators/browser-compatible-base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"compile": "tsc --build",
2121
"test": "vitest --passWithNoTests --run",
2222
"test:update": "vitest --passWithNoTests --run -u",
23-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../.eslintignore",
23+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../.eslintignore",
2424
"lint:eslint:fix": "yarn lint:eslint --fix",
2525
"format": "prettier --write --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",
2626
"format:check": "prettier --check --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",

generators/csharp/codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --run",
2121
"test:update": "vitest --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/csharp/model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/csharp/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/go-v2/ast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --run",
2121
"test:update": "vitest --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/go-v2/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/go-v2/dynamic-snippets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/go-v2/formatter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/go-v2/model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/go-v2/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/openapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"compile": "tsc --build",
2121
"test": "vitest --passWithNoTests --run",
2222
"test:update": "vitest --passWithNoTests --run -u",
23-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../.eslintignore",
23+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../.eslintignore",
2424
"lint:eslint:fix": "yarn lint:eslint --fix",
2525
"format": "prettier --write --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",
2626
"format:check": "prettier --check --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",

generators/php/codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --run --passWithNoTests",
2121
"test:update": "vitest --run --passWithNoTests -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/php/model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/php/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/postman/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"compile": "tsc --build",
2121
"test": "vitest --passWithNoTests --run",
2222
"test:update": "vitest --passWithNoTests --run -u",
23-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../.eslintignore",
23+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../.eslintignore",
2424
"lint:eslint:fix": "yarn lint:eslint --fix",
2525
"format": "prettier --write --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",
2626
"format:check": "prettier --check --ignore-unknown --ignore-path ../../shared/.prettierignore \"**\"",

generators/python-v2/ast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --run",
2121
"test:update": "vitest --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/python-v2/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/python-v2/fastapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/python-v2/pydantic-model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/ruby/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"compile": "tsc --build",
2121
"test": "vitest --passWithNoTests --run",
2222
"test:update": "vitest --passWithNoTests --run -u",
23-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
23+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2424
"lint:eslint:fix": "yarn lint:eslint --fix",
2525
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2626
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/ruby/codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/ruby/model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/ruby/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/swift/codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --run",
2121
"test:update": "vitest --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/typescript-v2/ast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"compile": "tsc --build",
1919
"test": "vitest --run --passWithNoTests",
2020
"test:update": "vitest --run --passWithNoTests -u",
21-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
21+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2222
"lint:eslint:fix": "yarn lint:eslint --fix",
2323
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2424
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/typescript-v2/dynamic-snippets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"",

generators/typescript/express/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

generators/typescript/express/express-endpoint-type-schemas-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

generators/typescript/express/express-error-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

generators/typescript/express/express-error-schema-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

generators/typescript/express/express-inlined-request-body-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

generators/typescript/express/express-inlined-request-body-schema-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

generators/typescript/express/express-register-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"compile": "tsc --build",
2020
"test": "vitest --passWithNoTests --run",
2121
"test:update": "vitest --passWithNoTests --run -u",
22-
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../../.eslintignore",
22+
"lint:eslint": "eslint --max-warnings 0 . --ignore-pattern=../../../../.eslintignore",
2323
"lint:eslint:fix": "yarn lint:eslint --fix",
2424
"format": "prettier --write --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",
2525
"format:check": "prettier --check --ignore-unknown --ignore-path ../../../../shared/.prettierignore \"**\"",

0 commit comments

Comments
 (0)