diff options
| author | 2023-11-03 21:25:40 +0800 | |
|---|---|---|
| committer | 2023-11-03 21:25:40 +0800 | |
| commit | 9029588590bea8b10451575c5142dcde77ecd1b5 (patch) | |
| tree | 04cf8aee56c23fd225ff19d340f7cee621d874ef /packages/turbo-utils/__fixtures__/common/single-package | |
| parent | 94071d7ce16c56641d67d488e2bac6be84ffe731 (diff) | |
| download | HydroRoll-9029588590bea8b10451575c5142dcde77ecd1b5.tar.gz HydroRoll-9029588590bea8b10451575c5142dcde77ecd1b5.zip | |
chore: delete useless files
Diffstat (limited to 'packages/turbo-utils/__fixtures__/common/single-package')
3 files changed, 0 insertions, 39 deletions
diff --git a/packages/turbo-utils/__fixtures__/common/single-package/child/child.js b/packages/turbo-utils/__fixtures__/common/single-package/child/child.js deleted file mode 100644 index 9e799a2..0000000 --- a/packages/turbo-utils/__fixtures__/common/single-package/child/child.js +++ /dev/null @@ -1,2 +0,0 @@ -process.env.NONEXISTENT; -process.env.CI; diff --git a/packages/turbo-utils/__fixtures__/common/single-package/package.json b/packages/turbo-utils/__fixtures__/common/single-package/package.json deleted file mode 100644 index b2a0927..0000000 --- a/packages/turbo-utils/__fixtures__/common/single-package/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "name": "single-package" -} diff --git a/packages/turbo-utils/__fixtures__/common/single-package/turbo.json b/packages/turbo-utils/__fixtures__/common/single-package/turbo.json deleted file mode 100644 index 8079eb2..0000000 --- a/packages/turbo-utils/__fixtures__/common/single-package/turbo.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "$schema": "https://turbo.build/schema.json", - "globalEnv": ["UNORDERED", "CI"], - "pipeline": { - "build": { - // A workspace's `build` task depends on that workspace's - // topological dependencies' and devDependencies' - // `build` tasks being completed first. The `^` symbol - // indicates an upstream dependency. - "dependsOn": ["^build"] - }, - "test": { - // A workspace's `test` task depends on that workspace's - // own `build` task being completed first. - "dependsOn": ["build"], - "outputs": [], - // A workspace's `test` task should only be rerun when - // either a `.tsx` or `.ts` file has changed. - "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"] - }, - "lint": { - // A workspace's `lint` task has no dependencies and - // can be run whenever. - "outputs": [] - }, - "deploy": { - // A workspace's `deploy` task depends on the `build`, - // `test`, and `lint` tasks of the same workspace - // being completed. - "dependsOn": ["build", "test", "lint"], - "outputs": [] - } - } -} |