@jttc/projen-project-types 1.0.0-beta.1 β 1.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cz-config.js +8 -1
- package/.jsii +440 -5
- package/API.md +9621 -252
- package/README.md +186 -29
- package/docs/components/cdk8s.md +724 -0
- package/docs/index.md +74 -13
- package/docs/project-types/cdk-app.md +481 -0
- package/docs/project-types/cdk-library.md +16 -108
- package/docs/project-types/cdk8s-library.md +442 -0
- package/lib/cdk/cdk-app-project.d.ts +9 -0
- package/lib/cdk/cdk-app-project.js +27 -0
- package/lib/cdk/cdk-library-project.js +1 -1
- package/lib/cdk/cdk8s-library-project.d.ts +12 -0
- package/lib/cdk/cdk8s-library-project.js +37 -0
- package/lib/common/common-options.d.ts +1 -0
- package/lib/common/common-options.js +10 -3
- package/lib/components/cdk8s/cdk8s.d.ts +11 -0
- package/lib/components/cdk8s/cdk8s.js +98 -0
- package/lib/components/cdk8s/index.d.ts +2 -0
- package/lib/components/cdk8s/index.js +19 -0
- package/lib/components/cdk8s/interfaces/Cdk8s.d.ts +39 -0
- package/lib/components/cdk8s/interfaces/Cdk8s.js +12 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +18 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +4 -1
- package/mkdocs.yml +4 -0
- package/package.json +6 -6
package/.cz-config.js
CHANGED
|
@@ -24,7 +24,14 @@ module.exports = {
|
|
|
24
24
|
{ value: 'WIP', name: 'WIP: Work in progress' },
|
|
25
25
|
],
|
|
26
26
|
|
|
27
|
-
scopes: [
|
|
27
|
+
scopes: [
|
|
28
|
+
{ name: 'projen' },
|
|
29
|
+
{ name: 'docs' },
|
|
30
|
+
{ name: 'cdk-library' },
|
|
31
|
+
{ name: 'cdk-app' },
|
|
32
|
+
{ name: 'cdk8s-component' },
|
|
33
|
+
{ name: 'cdk8s-library' },
|
|
34
|
+
],
|
|
28
35
|
|
|
29
36
|
usePreparedCommit: true, // to re-use commit from ./.git/COMMIT_EDITMSG
|
|
30
37
|
allowTicketNumber: false,
|
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"constructs": "^10.4.4",
|
|
11
|
-
"projen": "^0.
|
|
11
|
+
"projen": "^0.99.0"
|
|
12
12
|
},
|
|
13
13
|
"dependencyClosure": {
|
|
14
14
|
"constructs": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"stability": "stable"
|
|
84
84
|
},
|
|
85
85
|
"homepage": "git@github.com:JumpToTheCloud/projen-project-types.git",
|
|
86
|
-
"jsiiVersion": "5.9.
|
|
86
|
+
"jsiiVersion": "5.9.22 (build b81c634)",
|
|
87
87
|
"license": "Apache-2.0",
|
|
88
88
|
"metadata": {
|
|
89
89
|
"jsii": {
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
},
|
|
96
96
|
"name": "@jttc/projen-project-types",
|
|
97
97
|
"readme": {
|
|
98
|
-
"markdown": "# Projen Project Types\n\
|
|
98
|
+
"markdown": "# ποΈ Projen Project Types\n\n> **Opinionated project templates for [projen.io](https://projen.io) that accelerate development with best practices built-in**\n\n[](https://www.npmjs.com/package/@jttc/projen-project-types)\n[](https://opensource.org/licenses/Apache-2.0)\n[](https://jumptothecloud.github.io/projen-project-types/)\n[](https://github.com/JumpToTheCloud/projen-project-types)\n\n## β¨ What is this?\n\nThis package provides **ready-to-use project templates** that extend [projen](https://projen.io) with opinionated configurations, saving you hours of setup time while ensuring consistency and best practices across your projects.\n\nInstead of manually configuring Prettier, ESLint, VSCode settings, CI/CD pipelines, and other tools for every project, these templates give you everything pre-configured and battle-tested.\n\n## π Quick Start\n\n```bash\n# Create a CDK construct library\nnpx projen new --from @jttc/projen-project-types cdk-library\n\n# Create a CDK application\nnpx projen new --from @jttc/projen-project-types cdk-app\n\n# Create a CDK8s construct library with Kubernetes support\nnpx projen new --from @jttc/projen-project-types cdk8s-library\n```\n\n## π¦ Available Project Types\n\n| Project Type | Description | Best For |\n|--------------|-------------|----------|\n| **[CDK Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)** | AWS CDK construct libraries | Creating reusable AWS infrastructure components |\n| **[CDK App](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-app/)** | AWS CDK applications | Building and deploying AWS infrastructure |\n| **[CDK8s Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk8s-library/)** | CDK8s libraries with Kubernetes | Creating reusable Kubernetes constructs |\n\n## π§© Available Components\n\n| Component | Description | Documentation |\n|-----------|-------------|---------------|\n| **[CDK8s Component](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)** | Kubernetes manifest generation with TypeScript | Add to any project type |\n\n## β‘ What You Get Out of the Box\n\nEvery project template includes:\n\n- π¨ **[Prettier](https://jumptothecloud.github.io/projen-project-types/default-configurations/#prettier-configuration)** - Consistent code formatting\n- π§ **[VSCode Setup](https://jumptothecloud.github.io/projen-project-types/default-configurations/#vscode-configuration)** - Optimized editor experience with recommended extensions\n- π **TypeScript** - Best practices and configurations\n- π§ͺ **Jest Testing** - Ready-to-use testing framework\n- π’ **CI/CD Pipelines** - GitHub Actions workflows\n- π **Documentation** - Auto-generated API docs\n- π **Security** - Dependabot and security scanning\n\n## π‘ Example Usage\n\n### CDK Library with Custom Configuration\n\n```typescript\n// .projenrc.ts\nimport { CdkLibrary } from '@jttc/projen-project-types';\n\nconst project = new CdkLibrary({\n name: 'my-awesome-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-awesome-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // Customize as needed\n prettier: true,\n vscode: true,\n});\n\nproject.synth();\n```\n\n### CDK8s Library with Kubernetes Support\n\n```typescript\n// .projenrc.ts\nimport { Cdk8sLibrary, K8sVersion } from '@jttc/projen-project-types';\n\nconst project = new Cdk8sLibrary({\n name: 'my-k8s-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-k8s-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // CDK8s specific options\n k8sVersion: K8sVersion.V1_31,\n appPath: 'src/k8s',\n imports: ['cert-manager@v1.13.0'],\n});\n\nproject.synth();\n```\n\n## ποΈ Architecture\n\n```\nprojen-project-types/\nβββ π Project Types/ # Complete project templates\nβ βββ CDK Library # AWS CDK construct libraries\nβ βββ CDK App # AWS CDK applications\nβ βββ CDK8s Library # Kubernetes + CDK8s libraries\nβββ π§© Components/ # Reusable functionality\nβ βββ CDK8s Component # Kubernetes manifest generation\nβββ βοΈ Common Config/ # Shared configurations\n βββ Prettier # Code formatting\n βββ VSCode # Editor setup\n βββ TypeScript # Language configuration\n```\n\n## π Documentation\n\nComprehensive documentation is available at: **[jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)**\n\n- **[Getting Started Guide](https://jumptothecloud.github.io/projen-project-types/)**\n- **[Project Types](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)**\n- **[Components](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)**\n- **[Default Configurations](https://jumptothecloud.github.io/projen-project-types/default-configurations/)**\n\n## π οΈ Development\n\n### Prerequisites\n\n- **Node.js** (v18+)\n- **Yarn** package manager\n- **Python 3** (for documentation)\n\n### Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/JumpToTheCloud/projen-project-types.git\ncd projen-project-types\n\n# Install dependencies\nyarn install\n\n# Run tests\nyarn test\n\n# Build the project\nyarn build\n```\n\n### Documentation Development\n\n```bash\n# Install documentation dependencies\npip3 install mkdocs mkdocs-material mike\n\n# Serve documentation locally with hot reload\nyarn docs:serve\n\n# Build documentation\nyarn docs:build\n```\n\nThe documentation will be available at `http://localhost:8099` when using the serve command.\n\n## πΊοΈ Roadmap\n\nPlanned features and project types:\n\n- **Next.js Projects** - Full-stack TypeScript applications\n- **Node.js APIs** - REST and GraphQL API templates\n- **React Libraries** - Component library templates\n- **Terraform Modules** - Infrastructure as Code templates\n- **Docker Components** - Containerization support\n- **Serverless Functions** - AWS Lambda and other FaaS templates\n\n## π€ Contributing\n\nWe welcome contributions! Here's how to get started:\n\n1. **Fork the repository**\n2. **Create a feature branch**: `git checkout -b feature/amazing-feature`\n3. **Make your changes** and add tests\n4. **Run tests**: `yarn test`\n5. **Update documentation** if needed\n6. **Commit your changes**: `git commit -m 'Add amazing feature'`\n7. **Push to the branch**: `git push origin feature/amazing-feature`\n8. **Open a Pull Request**\n\n### Contribution Guidelines\n\n- All new features should include tests\n- Documentation should be updated for new project types or components\n- Follow the existing code style and patterns\n- Ensure all CI checks pass\n\n## β Support\n\n- **Documentation**: [jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)\n- **Issues**: [GitHub Issues](https://github.com/JumpToTheCloud/projen-project-types/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/JumpToTheCloud/projen-project-types/discussions)\n\n## π License\n\nThis project is licensed under the **Apache 2.0 License** - see the [LICENSE](LICENSE) file for details.\n\n## π Credits\n\nBuilt with β€οΈ by the [JumpToTheCloud](https://github.com/JumpToTheCloud) team.\n\nSpecial thanks to the [projen](https://projen.io) community for creating such an amazing tool for project configuration management."
|
|
99
99
|
},
|
|
100
100
|
"repository": {
|
|
101
101
|
"type": "git",
|
|
@@ -108,6 +108,395 @@
|
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
110
|
"types": {
|
|
111
|
+
"@jttc/projen-project-types.Cdk8sAppOptions": {
|
|
112
|
+
"assembly": "@jttc/projen-project-types",
|
|
113
|
+
"datatype": true,
|
|
114
|
+
"docs": {
|
|
115
|
+
"stability": "stable"
|
|
116
|
+
},
|
|
117
|
+
"fqn": "@jttc/projen-project-types.Cdk8sAppOptions",
|
|
118
|
+
"interfaces": [
|
|
119
|
+
"@jttc/projen-project-types.Cdk8sBaseOptions",
|
|
120
|
+
"projen.awscdk.AwsCdkTypeScriptAppOptions"
|
|
121
|
+
],
|
|
122
|
+
"kind": "interface",
|
|
123
|
+
"locationInModule": {
|
|
124
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
125
|
+
"line": 48
|
|
126
|
+
},
|
|
127
|
+
"name": "Cdk8sAppOptions",
|
|
128
|
+
"symbolId": "src/components/cdk8s/interfaces/Cdk8s:Cdk8sAppOptions"
|
|
129
|
+
},
|
|
130
|
+
"@jttc/projen-project-types.Cdk8sBaseOptions": {
|
|
131
|
+
"assembly": "@jttc/projen-project-types",
|
|
132
|
+
"datatype": true,
|
|
133
|
+
"docs": {
|
|
134
|
+
"stability": "stable"
|
|
135
|
+
},
|
|
136
|
+
"fqn": "@jttc/projen-project-types.Cdk8sBaseOptions",
|
|
137
|
+
"kind": "interface",
|
|
138
|
+
"locationInModule": {
|
|
139
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
140
|
+
"line": 14
|
|
141
|
+
},
|
|
142
|
+
"name": "Cdk8sBaseOptions",
|
|
143
|
+
"properties": [
|
|
144
|
+
{
|
|
145
|
+
"abstract": true,
|
|
146
|
+
"docs": {
|
|
147
|
+
"default": "main.ts",
|
|
148
|
+
"stability": "stable",
|
|
149
|
+
"summary": "The name of the main file."
|
|
150
|
+
},
|
|
151
|
+
"immutable": true,
|
|
152
|
+
"locationInModule": {
|
|
153
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
154
|
+
"line": 26
|
|
155
|
+
},
|
|
156
|
+
"name": "appFile",
|
|
157
|
+
"optional": true,
|
|
158
|
+
"type": {
|
|
159
|
+
"primitive": "string"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"abstract": true,
|
|
164
|
+
"docs": {
|
|
165
|
+
"default": "\"src/k8s\"",
|
|
166
|
+
"stability": "stable",
|
|
167
|
+
"summary": "path of main file to execute the typescript transpilation."
|
|
168
|
+
},
|
|
169
|
+
"immutable": true,
|
|
170
|
+
"locationInModule": {
|
|
171
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
172
|
+
"line": 20
|
|
173
|
+
},
|
|
174
|
+
"name": "appPath",
|
|
175
|
+
"optional": true,
|
|
176
|
+
"type": {
|
|
177
|
+
"primitive": "string"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"abstract": true,
|
|
182
|
+
"docs": {
|
|
183
|
+
"stability": "stable",
|
|
184
|
+
"summary": "List of kubernetes imports to be added."
|
|
185
|
+
},
|
|
186
|
+
"immutable": true,
|
|
187
|
+
"locationInModule": {
|
|
188
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
189
|
+
"line": 30
|
|
190
|
+
},
|
|
191
|
+
"name": "imports",
|
|
192
|
+
"optional": true,
|
|
193
|
+
"type": {
|
|
194
|
+
"collection": {
|
|
195
|
+
"elementtype": {
|
|
196
|
+
"primitive": "string"
|
|
197
|
+
},
|
|
198
|
+
"kind": "array"
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"abstract": true,
|
|
204
|
+
"docs": {
|
|
205
|
+
"default": "1.31",
|
|
206
|
+
"stability": "stable",
|
|
207
|
+
"summary": "The kubernetes version to use."
|
|
208
|
+
},
|
|
209
|
+
"immutable": true,
|
|
210
|
+
"locationInModule": {
|
|
211
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
212
|
+
"line": 42
|
|
213
|
+
},
|
|
214
|
+
"name": "k8sVersion",
|
|
215
|
+
"optional": true,
|
|
216
|
+
"type": {
|
|
217
|
+
"fqn": "@jttc/projen-project-types.K8sVersion"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"abstract": true,
|
|
222
|
+
"docs": {
|
|
223
|
+
"default": "\"kubernetes\"",
|
|
224
|
+
"stability": "stable",
|
|
225
|
+
"summary": "The path where the output synthesized file will be saved."
|
|
226
|
+
},
|
|
227
|
+
"immutable": true,
|
|
228
|
+
"locationInModule": {
|
|
229
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
230
|
+
"line": 36
|
|
231
|
+
},
|
|
232
|
+
"name": "outputPath",
|
|
233
|
+
"optional": true,
|
|
234
|
+
"type": {
|
|
235
|
+
"primitive": "string"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"symbolId": "src/components/cdk8s/interfaces/Cdk8s:Cdk8sBaseOptions"
|
|
240
|
+
},
|
|
241
|
+
"@jttc/projen-project-types.Cdk8sComponent": {
|
|
242
|
+
"assembly": "@jttc/projen-project-types",
|
|
243
|
+
"base": "projen.Component",
|
|
244
|
+
"docs": {
|
|
245
|
+
"stability": "stable"
|
|
246
|
+
},
|
|
247
|
+
"fqn": "@jttc/projen-project-types.Cdk8sComponent",
|
|
248
|
+
"initializer": {
|
|
249
|
+
"docs": {
|
|
250
|
+
"stability": "stable"
|
|
251
|
+
},
|
|
252
|
+
"locationInModule": {
|
|
253
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
254
|
+
"line": 20
|
|
255
|
+
},
|
|
256
|
+
"parameters": [
|
|
257
|
+
{
|
|
258
|
+
"name": "project",
|
|
259
|
+
"type": {
|
|
260
|
+
"fqn": "projen.Project"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "id",
|
|
265
|
+
"type": {
|
|
266
|
+
"primitive": "string"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "props",
|
|
271
|
+
"optional": true,
|
|
272
|
+
"type": {
|
|
273
|
+
"fqn": "@jttc/projen-project-types.Cdk8sBaseOptions"
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
},
|
|
278
|
+
"kind": "class",
|
|
279
|
+
"locationInModule": {
|
|
280
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
281
|
+
"line": 13
|
|
282
|
+
},
|
|
283
|
+
"methods": [
|
|
284
|
+
{
|
|
285
|
+
"docs": {
|
|
286
|
+
"remarks": "Order is *not* guaranteed.",
|
|
287
|
+
"stability": "stable",
|
|
288
|
+
"summary": "Called after synthesis."
|
|
289
|
+
},
|
|
290
|
+
"locationInModule": {
|
|
291
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
292
|
+
"line": 109
|
|
293
|
+
},
|
|
294
|
+
"name": "postSynthesize",
|
|
295
|
+
"overrides": "projen.Component"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"name": "Cdk8sComponent",
|
|
299
|
+
"properties": [
|
|
300
|
+
{
|
|
301
|
+
"docs": {
|
|
302
|
+
"stability": "stable"
|
|
303
|
+
},
|
|
304
|
+
"immutable": true,
|
|
305
|
+
"locationInModule": {
|
|
306
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
307
|
+
"line": 15
|
|
308
|
+
},
|
|
309
|
+
"name": "appFile",
|
|
310
|
+
"type": {
|
|
311
|
+
"primitive": "string"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"docs": {
|
|
316
|
+
"stability": "stable"
|
|
317
|
+
},
|
|
318
|
+
"immutable": true,
|
|
319
|
+
"locationInModule": {
|
|
320
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
321
|
+
"line": 14
|
|
322
|
+
},
|
|
323
|
+
"name": "appPath",
|
|
324
|
+
"type": {
|
|
325
|
+
"primitive": "string"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"docs": {
|
|
330
|
+
"stability": "stable"
|
|
331
|
+
},
|
|
332
|
+
"immutable": true,
|
|
333
|
+
"locationInModule": {
|
|
334
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
335
|
+
"line": 16
|
|
336
|
+
},
|
|
337
|
+
"name": "imports",
|
|
338
|
+
"type": {
|
|
339
|
+
"collection": {
|
|
340
|
+
"elementtype": {
|
|
341
|
+
"primitive": "string"
|
|
342
|
+
},
|
|
343
|
+
"kind": "array"
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"docs": {
|
|
349
|
+
"stability": "stable"
|
|
350
|
+
},
|
|
351
|
+
"immutable": true,
|
|
352
|
+
"locationInModule": {
|
|
353
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
354
|
+
"line": 18
|
|
355
|
+
},
|
|
356
|
+
"name": "k8sVersion",
|
|
357
|
+
"type": {
|
|
358
|
+
"fqn": "@jttc/projen-project-types.K8sVersion"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"docs": {
|
|
363
|
+
"stability": "stable"
|
|
364
|
+
},
|
|
365
|
+
"immutable": true,
|
|
366
|
+
"locationInModule": {
|
|
367
|
+
"filename": "src/components/cdk8s/cdk8s.ts",
|
|
368
|
+
"line": 17
|
|
369
|
+
},
|
|
370
|
+
"name": "outputPath",
|
|
371
|
+
"type": {
|
|
372
|
+
"primitive": "string"
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"symbolId": "src/components/cdk8s/cdk8s:Cdk8sComponent"
|
|
377
|
+
},
|
|
378
|
+
"@jttc/projen-project-types.Cdk8sLibrary": {
|
|
379
|
+
"assembly": "@jttc/projen-project-types",
|
|
380
|
+
"base": "projen.awscdk.AwsCdkConstructLibrary",
|
|
381
|
+
"docs": {
|
|
382
|
+
"custom": {
|
|
383
|
+
"pjid": "cdk8s-library"
|
|
384
|
+
},
|
|
385
|
+
"stability": "stable",
|
|
386
|
+
"summary": "CDK Construct Library Project."
|
|
387
|
+
},
|
|
388
|
+
"fqn": "@jttc/projen-project-types.Cdk8sLibrary",
|
|
389
|
+
"initializer": {
|
|
390
|
+
"docs": {
|
|
391
|
+
"stability": "stable"
|
|
392
|
+
},
|
|
393
|
+
"locationInModule": {
|
|
394
|
+
"filename": "src/cdk/cdk8s-library-project.ts",
|
|
395
|
+
"line": 14
|
|
396
|
+
},
|
|
397
|
+
"parameters": [
|
|
398
|
+
{
|
|
399
|
+
"name": "options",
|
|
400
|
+
"type": {
|
|
401
|
+
"fqn": "@jttc/projen-project-types.Cdk8sLibraryOptions"
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
]
|
|
405
|
+
},
|
|
406
|
+
"kind": "class",
|
|
407
|
+
"locationInModule": {
|
|
408
|
+
"filename": "src/cdk/cdk8s-library-project.ts",
|
|
409
|
+
"line": 11
|
|
410
|
+
},
|
|
411
|
+
"methods": [
|
|
412
|
+
{
|
|
413
|
+
"docs": {
|
|
414
|
+
"remarks": "Order is *not* guaranteed.",
|
|
415
|
+
"stability": "stable",
|
|
416
|
+
"summary": "Called after all components are synthesized."
|
|
417
|
+
},
|
|
418
|
+
"locationInModule": {
|
|
419
|
+
"filename": "src/cdk/cdk8s-library-project.ts",
|
|
420
|
+
"line": 27
|
|
421
|
+
},
|
|
422
|
+
"name": "postSynthesize",
|
|
423
|
+
"overrides": "projen.Project"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"name": "Cdk8sLibrary",
|
|
427
|
+
"properties": [
|
|
428
|
+
{
|
|
429
|
+
"docs": {
|
|
430
|
+
"stability": "stable"
|
|
431
|
+
},
|
|
432
|
+
"immutable": true,
|
|
433
|
+
"locationInModule": {
|
|
434
|
+
"filename": "src/cdk/cdk8s-library-project.ts",
|
|
435
|
+
"line": 12
|
|
436
|
+
},
|
|
437
|
+
"name": "cdk8s",
|
|
438
|
+
"type": {
|
|
439
|
+
"fqn": "@jttc/projen-project-types.Cdk8sComponent"
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
],
|
|
443
|
+
"symbolId": "src/cdk/cdk8s-library-project:Cdk8sLibrary"
|
|
444
|
+
},
|
|
445
|
+
"@jttc/projen-project-types.Cdk8sLibraryOptions": {
|
|
446
|
+
"assembly": "@jttc/projen-project-types",
|
|
447
|
+
"datatype": true,
|
|
448
|
+
"docs": {
|
|
449
|
+
"stability": "stable"
|
|
450
|
+
},
|
|
451
|
+
"fqn": "@jttc/projen-project-types.Cdk8sLibraryOptions",
|
|
452
|
+
"interfaces": [
|
|
453
|
+
"@jttc/projen-project-types.Cdk8sBaseOptions",
|
|
454
|
+
"projen.awscdk.AwsCdkConstructLibraryOptions"
|
|
455
|
+
],
|
|
456
|
+
"kind": "interface",
|
|
457
|
+
"locationInModule": {
|
|
458
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
459
|
+
"line": 45
|
|
460
|
+
},
|
|
461
|
+
"name": "Cdk8sLibraryOptions",
|
|
462
|
+
"symbolId": "src/components/cdk8s/interfaces/Cdk8s:Cdk8sLibraryOptions"
|
|
463
|
+
},
|
|
464
|
+
"@jttc/projen-project-types.CdkApp": {
|
|
465
|
+
"assembly": "@jttc/projen-project-types",
|
|
466
|
+
"base": "projen.awscdk.AwsCdkTypeScriptApp",
|
|
467
|
+
"docs": {
|
|
468
|
+
"custom": {
|
|
469
|
+
"pjid": "cdk-app"
|
|
470
|
+
},
|
|
471
|
+
"stability": "stable",
|
|
472
|
+
"summary": "CDK TypeScript App Project."
|
|
473
|
+
},
|
|
474
|
+
"fqn": "@jttc/projen-project-types.CdkApp",
|
|
475
|
+
"initializer": {
|
|
476
|
+
"docs": {
|
|
477
|
+
"stability": "stable"
|
|
478
|
+
},
|
|
479
|
+
"locationInModule": {
|
|
480
|
+
"filename": "src/cdk/cdk-app-project.ts",
|
|
481
|
+
"line": 13
|
|
482
|
+
},
|
|
483
|
+
"parameters": [
|
|
484
|
+
{
|
|
485
|
+
"name": "options",
|
|
486
|
+
"type": {
|
|
487
|
+
"fqn": "projen.awscdk.AwsCdkTypeScriptAppOptions"
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
"kind": "class",
|
|
493
|
+
"locationInModule": {
|
|
494
|
+
"filename": "src/cdk/cdk-app-project.ts",
|
|
495
|
+
"line": 12
|
|
496
|
+
},
|
|
497
|
+
"name": "CdkApp",
|
|
498
|
+
"symbolId": "src/cdk/cdk-app-project:CdkApp"
|
|
499
|
+
},
|
|
111
500
|
"@jttc/projen-project-types.CdkLibrary": {
|
|
112
501
|
"assembly": "@jttc/projen-project-types",
|
|
113
502
|
"base": "projen.awscdk.AwsCdkConstructLibrary",
|
|
@@ -143,8 +532,54 @@
|
|
|
143
532
|
},
|
|
144
533
|
"name": "CdkLibrary",
|
|
145
534
|
"symbolId": "src/cdk/cdk-library-project:CdkLibrary"
|
|
535
|
+
},
|
|
536
|
+
"@jttc/projen-project-types.K8sVersion": {
|
|
537
|
+
"assembly": "@jttc/projen-project-types",
|
|
538
|
+
"docs": {
|
|
539
|
+
"stability": "stable"
|
|
540
|
+
},
|
|
541
|
+
"fqn": "@jttc/projen-project-types.K8sVersion",
|
|
542
|
+
"kind": "enum",
|
|
543
|
+
"locationInModule": {
|
|
544
|
+
"filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
|
|
545
|
+
"line": 6
|
|
546
|
+
},
|
|
547
|
+
"members": [
|
|
548
|
+
{
|
|
549
|
+
"docs": {
|
|
550
|
+
"stability": "stable"
|
|
551
|
+
},
|
|
552
|
+
"name": "V1_29"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"docs": {
|
|
556
|
+
"stability": "stable"
|
|
557
|
+
},
|
|
558
|
+
"name": "V1_30"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"docs": {
|
|
562
|
+
"stability": "stable"
|
|
563
|
+
},
|
|
564
|
+
"name": "V1_31"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"docs": {
|
|
568
|
+
"stability": "stable"
|
|
569
|
+
},
|
|
570
|
+
"name": "V1_32"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"docs": {
|
|
574
|
+
"stability": "stable"
|
|
575
|
+
},
|
|
576
|
+
"name": "V1_33"
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"name": "K8sVersion",
|
|
580
|
+
"symbolId": "src/components/cdk8s/interfaces/Cdk8s:K8sVersion"
|
|
146
581
|
}
|
|
147
582
|
},
|
|
148
|
-
"version": "1.0.0-beta.
|
|
149
|
-
"fingerprint": "
|
|
583
|
+
"version": "1.0.0-beta.3",
|
|
584
|
+
"fingerprint": "JP7XcU0X/oalv6RHUufOk4XFhswaqE132y+OiZhtzqw="
|
|
150
585
|
}
|