Skip to content

Commit

Permalink
feat: Adding RFC to readme
Browse files Browse the repository at this point in the history
Adding original RFC to readme.
Adding codeowners.
Cleaning up npm package (removing .devcontainer).
Adding dependabot dependency checking.
  • Loading branch information
durkinza authored Jul 26, 2023
1 parent aea926e commit 69c8851
Show file tree
Hide file tree
Showing 13 changed files with 457 additions and 165 deletions.
2 changes: 1 addition & 1 deletion .gitattributes

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

11 changes: 11 additions & 0 deletions .github/dependabot.yml

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

90 changes: 0 additions & 90 deletions .github/workflows/upgrade-main.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore

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

1 change: 1 addition & 0 deletions .npmignore

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

1 change: 0 additions & 1 deletion .projen/deps.json

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

2 changes: 1 addition & 1 deletion .projen/files.json

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

43 changes: 0 additions & 43 deletions .projen/tasks.json

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

48 changes: 26 additions & 22 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,11 @@
import { awscdk, javascript } from 'projen';
import { awscdk, javascript, ProjectType } from 'projen';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'durkinza',
authorAddress: '8985088+durkinza@users.noreply.github.com',
bugsUrl: 'https://github.com/durkinza/cdk-networkfirewall-l2/issues',
cdkVersion: '2.79.0',
defaultReleaseBranch: 'main',
jsiiVersion: '~5.0.0',
name: '@durkinza/cdk-networkfirewall-l2',
packageName: '@durkinza/cdk-networkfirewall-l2', /* The "name" in package.json. */
homepage: 'https://github.com/durkinza/cdk-networkfirewall-l2#readme',
bugsUrl: 'https://github.com/durkinza/cdk-networkfirewall-l2/issues',
npmAccess: javascript.NpmAccess.PUBLIC,
license: 'Apache-2.0',
projenrcTs: true,
repositoryUrl: 'https://github.com/durkinza/cdk-networkfirewall-l2.git',
keywords: [
'cdk',
'aws-cdk',
'networkfirewall',
'aws',
'awscdk',
],
publishToPypi: {
distName: 'durkinza.cdk-networkfirewall-l2',
module: 'durkinza.cdk_networkfirewall_l2',
},
stability: 'experimental',
dependabot: true,
deps: ['aws-cdk-lib'], /* Runtime dependencies of this module. */
description: 'Experimental L2 constructs for the aws-networkfirewall', /* The description is just a string that helps people understand the purpose of the package. */
devDeps: [
Expand All @@ -51,6 +32,29 @@ const project = new awscdk.AwsCdkConstructLibrary({
'ts-node',
'typescript',
], /* Build dependencies for this module. */
homepage: 'https://github.com/durkinza/cdk-networkfirewall-l2#readme',
jsiiVersion: '~5.0.0',
keywords: [
'cdk',
'aws-cdk',
'networkfirewall',
'aws',
'awscdk',
],
license: 'Apache-2.0',
name: '@durkinza/cdk-networkfirewall-l2',
npmAccess: javascript.NpmAccess.PUBLIC,
npmignore: ['.devcontainer'],
packageName: '@durkinza/cdk-networkfirewall-l2', /* The "name" in package.json. */
peerDeps: ['aws-cdk-lib'],
projectType: ProjectType.LIB,
projenrcTs: true,
publishToPypi: {
distName: 'durkinza.cdk-networkfirewall-l2',
module: 'durkinza.cdk_networkfirewall_l2',
},
repositoryUrl: 'https://github.com/durkinza/cdk-networkfirewall-l2.git',
stability: 'experimental',
});
project.gitignore.exclude('test/**/*.js');
project.gitignore.exclude('test/**/*.d.ts');
Expand Down
Loading

0 comments on commit 69c8851

Please sign in to comment.