From c9e097a242b0f3c150cb8fd3094bae47d5b7bbe1 Mon Sep 17 00:00:00 2001 From: Makuza Mugabo Verite Date: Fri, 15 Apr 2022 12:45:55 +0200 Subject: [PATCH] fix: update exports --- package.json | 2 +- src/index.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 927f819..5405b73 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/index.ts b/src/index.ts index 0e6d381..29fb186 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,8 @@ 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 { @@ -7,5 +10,8 @@ export default { "no-skip-test": noSkippedTests, "lower-case-title": lowerCaseTitle, "assertion-type": assertionType, + "max-nested-describe": maxNestedDescribe, + "no-idential-title": noIdenticalTitle, + "no-conditional-in-test": noConditionalInTest, }, };