Skip to content

Commit

Permalink
version (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-chernicki authored Dec 20, 2023
1 parent 2d6aeae commit 129d264
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changeset/tidy-dodos-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@commonalityco/studio": patch
"commonality": patch
"commonality-recommended": patch
---

stability
12 changes: 11 additions & 1 deletion commonality.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { defineConfig } from 'commonality';
// @ts-check
import { defineCheck, defineConfig, json } from 'commonality';
import * as recommended from 'commonality-recommended';

export default defineConfig({
Expand All @@ -13,6 +14,15 @@ export default defineConfig({
recommended.noExternalMismatch(),
recommended.repositoryField(),
],
testable: [
defineCheck(() => {
return {
name: 'ensure-test-tooling',
message: 'Testable packages must have test tooling configured',
validate: ({ workspace }) => {},
};
}),
],
},
constraints: {
feature: { allow: '*' },
Expand Down

0 comments on commit 129d264

Please sign in to comment.