Skip to content

Commit

Permalink
Fix project references
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed Sep 29, 2023
1 parent 455e2cf commit a57ec09
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 17 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -28,5 +28,4 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --workspaces --include-workspace-root
- run: npm run build --workspaces
- run: npm test --workspaces
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -8,7 +8,7 @@
"packages/*"
],
"devDependencies": {
"@borderless/ts-scripts": "^0.14.1",
"@borderless/ts-scripts": "^0.14.2",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
}
Expand Down
3 changes: 2 additions & 1 deletion packages/camel-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/capital-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/constant-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/dot-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/header-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/param-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/pascal-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/path-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/sentence-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
3 changes: 2 additions & 1 deletion packages/snake-case/tsconfig.json
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"]
"exclude": ["src/**/*.spec.*", "src/**/*.bench.*"],
"references": [{ "path": "../no-case/tsconfig.json" }]
}
5 changes: 4 additions & 1 deletion tsconfig.base.json
@@ -1,3 +1,6 @@
{
"extends": "@borderless/ts-scripts/configs/tsconfig.json"
"extends": "@borderless/ts-scripts/configs/tsconfig.json",
"compilerOptions": {
"composite": true
}
}

0 comments on commit a57ec09

Please sign in to comment.