Skip to content

Commit

Permalink
fix: update exports
Browse files Browse the repository at this point in the history
  • Loading branch information
veritem committed Apr 15, 2022
1 parent cc5df8d commit c9e097a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test:ci": "vitest run",
"format": "prettier --write --plugin-search-dir=. .",
"format:check": "prettier --check --plugin-search-dir=. .",
"release": "bumpp package.json --commit --push --tag && pnpm publish"
"release": "pnpm build && bumpp package.json --commit --push --tag && pnpm publish"
},
"devDependencies": {
"@babel/types": "^7.17.0",
Expand Down
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import assertionType from "./rules/assertion-type";
import lowerCaseTitle from "./rules/lower-case-title";
import maxNestedDescribe from "./rules/max-nested-describe";
import noConditionalInTest from "./rules/no-conditional-in-tests";
import noIdenticalTitle from "./rules/no-identical-title";
import noSkippedTests from "./rules/no-skipped-tests";

export default {
rules: {
"no-skip-test": noSkippedTests,
"lower-case-title": lowerCaseTitle,
"assertion-type": assertionType,
"max-nested-describe": maxNestedDescribe,
"no-idential-title": noIdenticalTitle,
"no-conditional-in-test": noConditionalInTest,
},
};

0 comments on commit c9e097a

Please sign in to comment.