Skip to content

Commit

Permalink
feat(projen): Apply changes
Browse files Browse the repository at this point in the history
Adds managing Beachball with projen.
  • Loading branch information
langri-sha committed Apr 30, 2024
1 parent bb6eb06 commit 85f90bc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ node_modules/
!/.projen/tasks.json
!/.projen/deps.json
!/.projen/files.json
!/beachball.config.js
!/pnpm-workspace.yaml
1 change: 1 addition & 0 deletions .projen/files.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
".projen/deps.json",
".projen/files.json",
".projen/tasks.json",
"beachball.config.js",
"pnpm-workspace.yaml"
],
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
Expand Down
1 change: 1 addition & 0 deletions .projenrc.mts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Project } from '@langri-sha/projen-project'

const project = new Project({
name: "langri-sha.com",
beachballConfig: {},
withTypeScript: true,
withTerraform: true,
workspaces: [
Expand Down
7 changes: 2 additions & 5 deletions beachball.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
/**
* @type {import('beachball').BeachballConfig}
*/
/** @type {import('beachball').BeachballConfig} */
module.exports = {
branch: 'origin/main',
gitTags: false,
ignorePatterns: [
'*.test.ts',
'*.test.tsx',
'*.test.*',
'.*/**',
'__snapshots__/',
'dist/',
Expand Down

0 comments on commit 85f90bc

Please sign in to comment.