Skip to content

Commit

Permalink
chore: Cleaning up .projenrc.js from duplicate dependency definitions (
Browse files Browse the repository at this point in the history
…#155)

* Cleaning up .projenrc.js from duplicate dependency definitions

* Remove lines that were commented out
  • Loading branch information
LeonLuttenberger committed Aug 24, 2022
1 parent 03216e5 commit b3743f3
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ const project = new awscdk.AwsCdkConstructLibrary({
description: 'AWS DataOps Development Kit',
repositoryUrl: 'https://github.com/awslabs/aws-ddk',

// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */

// Artifact config: Python
publishToPypi: {
distName: 'aws-ddk-core',
Expand Down Expand Up @@ -47,10 +42,4 @@ const project = new awscdk.AwsCdkConstructLibrary({
project.addBundledDeps(dep);
});

// Experimental modules
[].forEach((dep) => {
project.deps.addDependency(`${dep}@^${CDK_VERSION}-alpha.0`, DependencyType.PEER);
project.deps.addDependency(`${dep}@${CDK_VERSION}-alpha.0`, DependencyType.DEVENV);
});

project.synth();

0 comments on commit b3743f3

Please sign in to comment.