Skip to content

Commit

Permalink
Merge pull request #15 from dkershner6/DAK/lib-update
Browse files Browse the repository at this point in the history
fix: update constructs lib
  • Loading branch information
dkershner6 authored Dec 31, 2023
2 parents 2bbfc24 + d3b4a48 commit f6636d3
Show file tree
Hide file tree
Showing 10 changed files with 70 additions and 28 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.json

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

1 change: 1 addition & 0 deletions .gitattributes

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

1 change: 1 addition & 0 deletions .gitignore

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

1 change: 1 addition & 0 deletions .nvmrc

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

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

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

1 change: 1 addition & 0 deletions .projen/files.json

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

4 changes: 2 additions & 2 deletions .projen/tasks.json

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

28 changes: 15 additions & 13 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Node20AwsCdkConstructLibrary } from "dkershner6-projen";
import { Node20AwsCdkConstructLibrary } from "dkershner6-projen-typescript";
import { Nvmrc } from "projen-nvm";

const GITHUB_USERNAME_OR_ORG = "dkershner6";
const GITHUB_USERNAME_OR_ORG_PASCAL_CASE = "DKershner6";
Expand All @@ -17,21 +18,17 @@ const project = new Node20AwsCdkConstructLibrary({
repositoryUrl:
"https://github.com/dkershner6/cdk-nextjs-export-s3-dynamic-routing.git",

/* Runtime dependencies of this module. */
deps: ["lodash.set", "uglify-js"],
description:
"Deploy a static export Next.js site to Cloudfront and S3 while maintaining the ability to use dynamic routes." /* The description is just a string that helps people understand the purpose of the package. */,
devDeps: [
"@types/lodash.set",
"@types/uglify-js",
"dkershner6-projen",
"dkershner6-projen-typescript",
"projen-nvm",
] /* Build dependencies for this module. */,
packageName: PROJECT_NAME /* The "name" in package.json. */,
bundledDeps: [
"lodash.set",
"uglify-js",
] /* Bundled dependencies of this module. */,
],
packageName: PROJECT_NAME,
bundledDeps: ["lodash.set", "uglify-js"],

gitignore: [".DS_Store"],

Expand All @@ -51,11 +48,16 @@ const project = new Node20AwsCdkConstructLibrary({
},

// publishToMaven: {
// mavenGroupId: `io.github.${GITHUB_USERNAME_OR_ORG}`,
// javaPackage: `io.github.${GITHUB_USERNAME_OR_ORG}.${PROJECT_NAME.replace('-', '')}`,
// mavenArtifactId: PROJECT_NAME,
// mavenEndpoint: 'https://s01.oss.sonatype.org',
// mavenGroupId: `io.github.${GITHUB_USERNAME_OR_ORG}`,
// javaPackage: `io.github.${GITHUB_USERNAME_OR_ORG}.${PROJECT_NAME.replace(
// "-",
// "",
// )}`,
// mavenArtifactId: PROJECT_NAME,
// mavenEndpoint: "https://s01.oss.sonatype.org",
// },
});

new Nvmrc(project);

project.synth();
3 changes: 2 additions & 1 deletion package.json

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

50 changes: 39 additions & 11 deletions pnpm-lock.yaml

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

0 comments on commit f6636d3

Please sign in to comment.