Skip to content

Commit

Permalink
Merge pull request #29 from cloud-native-toolkit/feature/create-deplo…
Browse files Browse the repository at this point in the history
…yer-tasks

feat: Added generation for internally-created tasks.
  • Loading branch information
nathanagood authored May 21, 2024
2 parents 33a643d + 366709d commit e532935
Show file tree
Hide file tree
Showing 14 changed files with 3,577 additions and 97 deletions.
2 changes: 2 additions & 0 deletions .gitignore

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

8 changes: 8 additions & 0 deletions .projen/deps.json

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

7 changes: 5 additions & 2 deletions .projen/tasks.json

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

5 changes: 5 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const project = new cdk8s.ConstructLibraryCdk8s({
bundledDeps: [
'octokit',
'axios',
'simple-git',
'handlebars',
],
peerDeps: [
'cdk8s',
Expand All @@ -31,8 +33,11 @@ const project = new cdk8s.ConstructLibraryCdk8s({
],
gitignore: [
'.idea/',
'cache/',
'src/deployerTektonTasks/generatedDeployerTasks.ts',
],
});
// Create the tekton hub tasks
project.projectBuild.preCompileTask.exec('npx ts-node src/tektonHub/CreateTektonHubLink.ts');
project.projectBuild.preCompileTask.exec('npx ts-node src/deployerTektonTasks/CreateDeployerRepoLink.ts');
project.synth();
Loading

0 comments on commit e532935

Please sign in to comment.