Skip to content

Commit

Permalink
feat: inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger Chi authored and Roger Chi committed Dec 24, 2022
1 parent eb53538 commit d879ebb
Show file tree
Hide file tree
Showing 18 changed files with 941 additions and 38 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml

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

35 changes: 35 additions & 0 deletions .github/workflows/release.yml

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

2 changes: 2 additions & 0 deletions .mergify.yml

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

28 changes: 26 additions & 2 deletions .projen/deps.json

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

22 changes: 17 additions & 5 deletions .projen/tasks.json

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

29 changes: 23 additions & 6 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
import { awscdk } from 'projen';

const cdkVersion = '2.24.0';
const name = 'cdk-remix-app';

const project = new awscdk.AwsCdkConstructLibrary({
author: 'user',
authorAddress: 'user@domain.com',
cdkVersion: '2.1.0',
author: 'Roger Chi',
authorAddress: 'roger@rogerchi.com',
cdkVersion,
defaultReleaseBranch: 'main',
name: 'cdk-remix-construct',
name,
projenrcTs: true,
repositoryUrl: 'https://github.com/user/cdk-remix-construct.git',
repositoryUrl: 'https://github.com/rogerchi/cdk-remix-app.git',

peerDeps: [
`@aws-cdk/aws-apigatewayv2-alpha@${cdkVersion}-alpha.0`,
`@aws-cdk/aws-apigatewayv2-integrations-alpha@${cdkVersion}-alpha.0`,
],

devDeps: ['esbuild'],
publishToPypi: {
distName: name,
module: 'cdk_remix-app',
},
releaseToNpm: true,

// 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. */
});
project.synth();

project.synth();
Loading

0 comments on commit d879ebb

Please sign in to comment.