From 2330d8ac6ebe5eb30c26fc9b7499930846606f8c Mon Sep 17 00:00:00 2001 From: Carlos Santiago <5726971+csantiago132@users.noreply.github.com> Date: Wed, 2 Oct 2024 21:41:54 -0500 Subject: [PATCH] feat(config): exports commitlint and semantic-release --- package.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 80c0926..c367590 100644 --- a/package.json +++ b/package.json @@ -12,12 +12,6 @@ }, "license": "MPL-2.0", "exports": { - "./gh-actions/base": "./.github/workflows/_base.yml", - "./gh-actions/commitlint": "./.github/workflows/commitlint.yml", - "./gh-actions/deploy_writerside_docs": "./.github/workflows/deploy_writerside_docs.yml", - "./gh-actions/eslint_check": "./.github/workflows/eslint_check.yml", - "./gh-actions/npm_publish": "./.github/workflows/npm_publish.yml", - "./gh-actions/prettier_check": "./.github/workflows/prettier_check.yml", "./commitlint": "./src/commitlint/index.js", "./semantic-release": "./src/semantic-release/index.js", "./eslint/base": "./src/eslint/eslint.base.js", @@ -34,7 +28,14 @@ "./tsconfig/web": "./src/tsconfig/tsconfig.web.json" }, "main": "index.js", - "files": ["src/eslint", "src/prettier", "src/tsconfig"], + "files": [ + "src/.github", + "src/commitlint", + "src/eslint", + "src/prettier", + "src/semantic-release", + "src/tsconfig" + ], "scripts": { "commitlint": "pnpm exec commitlint --edit", "eslint-check": "eslint --max-warnings=0 .",