From 1d932a3686f71d95bf94a04fe529e1fac29a2d5a Mon Sep 17 00:00:00 2001 From: Josh de Leeuw Date: Fri, 2 Aug 2024 16:55:44 -0400 Subject: [PATCH 1/3] Rename validateFunctions.ts to validatefunctions.ts --- packages/cli/src/{validateFunctions.ts => validatefunctions.ts} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename packages/cli/src/{validateFunctions.ts => validatefunctions.ts} (99%) diff --git a/packages/cli/src/validateFunctions.ts b/packages/cli/src/validatefunctions.ts similarity index 99% rename from packages/cli/src/validateFunctions.ts rename to packages/cli/src/validatefunctions.ts index e8db16a..51b02ec 100644 --- a/packages/cli/src/validateFunctions.ts +++ b/packages/cli/src/validatefunctions.ts @@ -54,4 +54,4 @@ export const validateJson = (filePath: string, fileName?: string): boolean => { console.error(`Error: ${error.message}`); return false; } -} \ No newline at end of file +} From 10a7e7d6d5750ab06179ed19e07650fcabb6ff72 Mon Sep 17 00:00:00 2001 From: Josh de Leeuw Date: Fri, 2 Aug 2024 16:57:30 -0400 Subject: [PATCH 2/3] remove test running from release action --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8e5952e..db68859 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,7 @@ jobs: - name: Build packages run: npm run build - - name: Run tests - run: npm run test -- --ci --maxWorkers=2 + # add tests back in here - name: Create Release Pull Request or Publish to npm id: changesets From c10cd30a6619d6694de36d6a2c3e019c38bbb3c9 Mon Sep 17 00:00:00 2001 From: Josh de Leeuw Date: Fri, 2 Aug 2024 17:03:44 -0400 Subject: [PATCH 3/3] make npm packages public --- .changeset/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/config.json b/.changeset/config.json index ae82eba..d4dfac0 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -4,7 +4,7 @@ "commit": false, "fixed": [], "linked": [], - "access": "restricted", + "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", "ignore": []