diff options
| author | 2023-07-07 16:24:16 +0800 | |
|---|---|---|
| committer | 2023-07-07 16:24:16 +0800 | |
| commit | f3e4415e701290915e54810e618f10ecb3ac36fe (patch) | |
| tree | fc4b1ce801045bdf3785851de2907c14870e616e | |
| parent | 5ee674765c5ed400dcd83146ee4dfa51bd6729de (diff) | |
| download | HydroRoll-f3e4415e701290915e54810e618f10ecb3ac36fe.tar.gz HydroRoll-f3e4415e701290915e54810e618f10ecb3ac36fe.zip | |
😫Fix the bug
| -rw-r--r-- | .eslintignore | 12 | ||||
| -rw-r--r-- | .prettierignore | 6 | ||||
| -rw-r--r-- | pnpm-workspace.yaml | 4 | ||||
| -rw-r--r-- | tsconfig.json | 2 | ||||
| -rw-r--r-- | tsconfig.project.json | 10 | ||||
| -rw-r--r-- | turbo.json | 6 |
6 files changed, 20 insertions, 20 deletions
diff --git a/.eslintignore b/.eslintignore index 73538b4..ee719fd 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,10 +4,10 @@ target/ build/ dist/ -# /examples/ +/examples/ -# packages/eslint-plugin-turbo/__fixtures__ -# packages/create-turbo/templates -# packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose -# crates/*/tests/** -# crates/next-core/js/src/compiled +packages/eslint-plugin-turbo/__fixtures__ +packages/create-turbo/templates +packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose +crates/*/tests/** +crates/next-core/js/src/compiled diff --git a/.prettierignore b/.prettierignore index 26b4319..0964dfb 100644 --- a/.prettierignore +++ b/.prettierignore @@ -10,10 +10,10 @@ pnpm-lock.yaml __generated__/ /docs/public/schema.json -# /packages/eslint-plugin-turbo/__tests__/fixtures/ -# /packages/turbo-codemod/templates/ +/packages/eslint-plugin-turbo/__tests__/fixtures/ +/packages/turbo-codemod/templates/ /docs/components/pages/pack-home/benchmark-data/data.json -# /examples/with-svelte +/examples/with-svelte # crates diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 99e0c9f..1a0aa09 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -2,7 +2,7 @@ packages: - ".github/actions/*" - "docs" - "cli" - # - "packages/*" + - "packages/*" - "benchmark" - "turborepo-tests/*" # Intentionally exclude the `npm` `turbo` package from the workspaces. @@ -11,4 +11,4 @@ packages: - "crates/next-dev-tests/test-harness" - "crates/next-dev-tests/tests" - "crates/*/js" - # - examples + - examples diff --git a/tsconfig.json b/tsconfig.json index ef429c2..c93710c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,7 @@ "noEmitHelpers": false, "skipLibCheck": true, "outDir": "./dist", - // "baseUrl": "./packages", + "baseUrl": "./packages", "paths": { "@vercel/webpack-nft": ["webpack-nmt/src/index.ts"] } diff --git a/tsconfig.project.json b/tsconfig.project.json index 2adfd56..df52392 100644 --- a/tsconfig.project.json +++ b/tsconfig.project.json @@ -1,8 +1,8 @@ { "extends": "./tsconfig.json", - "include": [] - // "references": [ - // { "path": "./packages/webpack-nmt" }, - // { "path": "./packages/turbo-tracing-next-plugin" } - // ] + "include": [], + "references": [ + { "path": "./packages/webpack-nmt" }, + { "path": "./packages/turbo-tracing-next-plugin" } + ] } @@ -18,9 +18,9 @@ "check-types": { "dependsOn": ["^build"] }, - // "//#build:ts": { - // "outputs": ["packages/**/dist"] - // }, + "//#build:ts": { + "outputs": ["packages/**/dist"] + }, "build": { "outputs": ["dist/**/*", ".next/**/*"], "dependsOn": ["^build"] |
