Skip to content

Commit

Permalink
fix: Go to publish to git-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dkershner6 committed Dec 31, 2023
1 parent d251b30 commit 67fda3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const project = new Node20AwsCdkConstructLibrary({
packageName: PROJECT_NAME,
bundledDeps: ["lodash.set", "uglify-js"],

gitignore: [".DS_Store", PROJECT_NAME_NO_DASHES],
gitignore: [".DS_Store"],

// Publish to other languages
releaseToNpm: true,
Expand All @@ -50,6 +50,7 @@ const project = new Node20AwsCdkConstructLibrary({

publishToGo: {
moduleName: `github.com/${GITHUB_USERNAME_OR_ORG}/${PROJECT_NAME}`,
gitBranch: "publish-go",
},

// publishToMaven: {
Expand All @@ -63,9 +64,8 @@ const project = new Node20AwsCdkConstructLibrary({
// },
});

project.addPackageIgnore(PROJECT_NAME_NO_DASHES);
project.addPackageIgnore(".prettier*");
project.addPackageIgnore(".projen*");
project.addPackageIgnore(".projenrc.*");

new Nvmrc(project);

Expand Down

0 comments on commit 67fda3a

Please sign in to comment.