diff --git a/.gitignore b/.gitignore index db5b2841d..f34f81b80 100644 --- a/.gitignore +++ b/.gitignore @@ -27,4 +27,5 @@ node_modules/ !/.projen/tasks.json !/.projen/deps.json !/.projen/files.json +!/beachball.config.js !/pnpm-workspace.yaml diff --git a/.projen/files.json b/.projen/files.json index 957e04416..9ef785d20 100644 --- a/.projen/files.json +++ b/.projen/files.json @@ -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\"." diff --git a/.projenrc.mts b/.projenrc.mts index 1faeb7bd0..502d11ce6 100644 --- a/.projenrc.mts +++ b/.projenrc.mts @@ -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: [ diff --git a/beachball.config.js b/beachball.config.js index 1410537d3..4f10252e3 100644 --- a/beachball.config.js +++ b/beachball.config.js @@ -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/',