projen-pipelines 0.0.22 → 0.0.24

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.
Files changed (2) hide show
  1. package/README.md +11 -6
  2. package/package.json +8 -9
package/README.md CHANGED
@@ -42,13 +42,18 @@ const app = new awscdk.AwsCdkTypeScriptApp({
42
42
  });
43
43
 
44
44
  // Create the pipeline
45
- new CDKPipeline(app, {
45
+ new GithubCDKPipeline(app, {
46
46
  stackPrefix: 'MyApp',
47
47
  pkgNamespace: '@company-assemblies',
48
- environments: {
49
- dev: { account: '111111111111', region: 'eu-central-1' },
50
- prod: { account: '222222222222', region: 'eu-central-1' },
51
- },
48
+ stages: [
49
+ {
50
+ name: 'dev',
51
+ env: { account: '123456789012', region: 'eu-central-1' },
52
+ }, {
53
+ name: 'prod',
54
+ manualApproval: true,
55
+ env: {account: '123456789012', region: 'eu-central-1' },
56
+ }],
52
57
  });
53
58
  ```
54
59
 
@@ -89,7 +94,7 @@ app.synth();
89
94
 
90
95
  ### Deployment
91
96
 
92
- The `CDKPipeline` class creates and adds several tasks to the projen project that then can be used in your pipeline to deploy your application to AWS.
97
+ The `<Engine>CDKPipeline` class creates and adds several tasks to the projen project that then can be used in your pipeline to deploy your application to AWS.
93
98
 
94
99
  Here's a brief description of each one:
95
100
 
package/package.json CHANGED
@@ -34,32 +34,31 @@
34
34
  "organization": true
35
35
  },
36
36
  "devDependencies": {
37
- "@types/fs-extra": "^11.0.3",
38
- "@types/jest": "^29.5.7",
39
- "@types/node": "^16",
40
- "@types/standard-version": "^7.1.2",
37
+ "@types/fs-extra": "^11.0.4",
38
+ "@types/jest": "^29.5.8",
39
+ "@types/node": "^18",
40
+ "@types/standard-version": "^7.1.3",
41
41
  "@typescript-eslint/eslint-plugin": "^6",
42
42
  "@typescript-eslint/parser": "^6",
43
43
  "constructs": "^10.0.0",
44
44
  "eslint": "^8",
45
- "eslint-import-resolver-node": "^0.3.9",
46
45
  "eslint-import-resolver-typescript": "^3.6.1",
47
46
  "eslint-plugin-import": "^2.29.0",
48
47
  "fs-extra": "^11.1.1",
49
48
  "jest": "^29.7.0",
50
49
  "jest-junit": "^15",
51
50
  "npm-check-updates": "^16",
52
- "projen": "^0.76.20",
51
+ "projen": "^0.76.27",
53
52
  "standard-version": "^9",
54
53
  "ts-jest": "^29.1.1",
55
54
  "ts-node": "^10.9.1",
56
55
  "typescript": "^5.2.2"
57
56
  },
58
57
  "peerDependencies": {
59
- "projen": "^0.76.20"
58
+ "projen": "^0.76.27"
60
59
  },
61
60
  "dependencies": {
62
- "projen": "^0.76.20",
61
+ "projen": "^0.76.27",
63
62
  "standard-version": "^9.5.0"
64
63
  },
65
64
  "keywords": [
@@ -68,7 +67,7 @@
68
67
  ],
69
68
  "main": "lib/index.js",
70
69
  "license": "Apache-2.0",
71
- "version": "0.0.22",
70
+ "version": "0.0.24",
72
71
  "jest": {
73
72
  "testMatch": [
74
73
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",