diff --git a/.changeset/config.json b/.changeset/config.json index 7201626..c68604a 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -8,8 +8,8 @@ "baseBranch": "main", "updateInternalDependencies": "patch", "privatePackages": { - "version": false, + "version": true, "tag": false }, - "ignore": [] + "ignore": ["@tmp-test-changesets/app"] } diff --git a/.github/workflows/changeset-check.yml b/.github/workflows/changeset-check.yml index 140943d..b2b4ad6 100644 --- a/.github/workflows/changeset-check.yml +++ b/.github/workflows/changeset-check.yml @@ -32,4 +32,4 @@ jobs: # and no changeset covers it. Private packages and apps are excluded via # `privatePackages: { version: false }` in .changeset/config.json. - name: Check changesets for changed public packages - run: pnpm changeset status --since=origin/${{ github.base_ref }} + run: pnpm changeset status --since=main diff --git a/apps/app/src/index.ts b/apps/app/src/index.ts index 5f7821d..5f20609 100644 --- a/apps/app/src/index.ts +++ b/apps/app/src/index.ts @@ -1,5 +1,5 @@ import { greet } from '@tmp-test-changesets/public-lib' import { greetLoudly } from '@tmp-test-changesets/private-lib' -console.log(greet('world')) +console.log(greet('world!')) console.log(greetLoudly('world'))