Skip to content

Commit

Permalink
moving to peer/dev deps on the cdk
Browse files Browse the repository at this point in the history
  • Loading branch information
mbonig committed Apr 17, 2021
1 parent 05b166d commit 535e961
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 64 deletions.
92 changes: 46 additions & 46 deletions .projen/deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,51 @@
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-autoscaling",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-ec2",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-events-targets",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-events",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-iam",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-lambda-nodejs",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-lambda",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/aws-rds",
"version": "1.98.0",
"type": "build"
},
{
"name": "@aws-cdk/core",
"version": "1.98.0",
"type": "build"
},
{
"name": "@types/jest",
"type": "build"
Expand Down Expand Up @@ -73,7 +118,7 @@
},
{
"name": "projen",
"version": "^0.17.33",
"version": "^0.17.44",
"type": "build"
},
{
Expand Down Expand Up @@ -147,51 +192,6 @@
"version": "^3.2.27",
"type": "peer"
},
{
"name": "@aws-cdk/aws-autoscaling",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-ec2",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-events-targets",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-events",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-iam",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-lambda-nodejs",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-lambda",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/aws-rds",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "@aws-cdk/core",
"version": "1.98.0",
"type": "runtime"
},
{
"name": "cdk-iam-floyd",
"type": "runtime"
Expand Down
3 changes: 2 additions & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ const { AwsCdkConstructLibrary } = require('projen');
const dependencies = [
'cdk-iam-floyd',
];
const cdkVersion = process.env.CDK_VERSION || '1.93.0';
const cdkVersion = '1.98.0';
const project = new AwsCdkConstructLibrary({
name: '@matthewbonig/nightynight',
description: 'A CDK construct that will automatically stop a running EC2 instance at a given time.',
authorAddress: 'matthew.bonig@gmail.com',
authorName: 'Matthew Bonig',
cdkVersion: cdkVersion,
cdkDependenciesAsDeps: false,
repository: 'https://github.com/mbonig/nightynight',
defaultReleaseBranch: 'master',
deps: dependencies,
Expand Down
3 changes: 2 additions & 1 deletion .versionrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
"commitAll": true,
"scripts": {
"postbump": "npx projen && git add ."
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@
},
"devDependencies": {
"@aws-cdk/assert": "1.98.0",
"@aws-cdk/aws-autoscaling": "1.98.0",
"@aws-cdk/aws-ec2": "1.98.0",
"@aws-cdk/aws-events": "1.98.0",
"@aws-cdk/aws-events-targets": "1.98.0",
"@aws-cdk/aws-iam": "1.98.0",
"@aws-cdk/aws-lambda": "1.98.0",
"@aws-cdk/aws-lambda-nodejs": "1.98.0",
"@aws-cdk/aws-rds": "1.98.0",
"@aws-cdk/core": "1.98.0",
"@types/jest": "^26.0.7",
"@types/node": "^10.17.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
Expand All @@ -47,7 +56,7 @@
"jsii-docgen": "^1.3.2",
"jsii-pacmak": "^1.11.0",
"json-schema": "^0.2.5",
"projen": "^0.17.33",
"projen": "^0.17.44",
"standard-version": "^9",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5",
Expand All @@ -67,15 +76,6 @@
"constructs": "^3.2.27"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "1.98.0",
"@aws-cdk/aws-ec2": "1.98.0",
"@aws-cdk/aws-events": "1.98.0",
"@aws-cdk/aws-events-targets": "1.98.0",
"@aws-cdk/aws-iam": "1.98.0",
"@aws-cdk/aws-lambda": "1.98.0",
"@aws-cdk/aws-lambda-nodejs": "1.98.0",
"@aws-cdk/aws-rds": "1.98.0",
"@aws-cdk/core": "1.98.0",
"cdk-iam-floyd": "^0.113.0"
},
"bundledDependencies": [],
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@
],
"exclude": [
"node_modules"
]
],
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}
3 changes: 2 additions & 1 deletion tsconfig.jest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@
],
"exclude": [
"node_modules"
]
],
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5422,10 +5422,10 @@ progress@^2.0.0:
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==

projen@^0.17.33:
version "0.17.33"
resolved "https://registry.yarnpkg.com/projen/-/projen-0.17.33.tgz#4229dd758f9a60adf2d254d66758c9c29bc5afbd"
integrity sha512-s1EZyVTjECow0/qNl6tY/Zf8TfiwkurUPWT4y0/URCxfsml0HE66b+mc1rcHVyKMMUMm/Y9sQZFnUv1xs2rqrw==
projen@^0.17.44:
version "0.17.44"
resolved "https://registry.yarnpkg.com/projen/-/projen-0.17.44.tgz#b1917ac8a5116d4a59dbfbf3b787a82530dc02b4"
integrity sha512-8nFtkzRF4rPzZXVcSEbNxbz7H4fVfqe9dKN7tCx1bVeIbNbCosNAhpXOUfDyeqZs8pHMN9wfxLf7uAPHdU7kRw==
dependencies:
"@iarna/toml" "^2.2.5"
chalk "^4.1.0"
Expand Down

0 comments on commit 535e961

Please sign in to comment.