diff --git a/.changeset/slimy-cooks-pull.md b/.changeset/slimy-cooks-pull.md new file mode 100644 index 0000000..c586976 --- /dev/null +++ b/.changeset/slimy-cooks-pull.md @@ -0,0 +1,6 @@ +--- +"@scrawn/analytics": patch +"@scrawn/core": patch +--- + +fixing sdk build ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bdf2f9..61ee0cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,11 +30,6 @@ jobs: - name: Install dependencies run: bun install --frozen-lockfile - - name: Build packages - run: | - cd packages/scrawn && bun run build - cd ../analytics && bun run build - - name: Create Release PR or Publish id: changesets uses: changesets/action@v1 diff --git a/.gitignore b/.gitignore index 671dd6b..e95c6a2 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,6 @@ coverage/ # Package manager lock files (optional) # package-lock.json -# yarn.lock \ No newline at end of file +# yarn.lock + +.firecrawl \ No newline at end of file diff --git a/packages/analytics/tsconfig.json b/packages/analytics/tsconfig.json index 916bfd7..7b4c05d 100644 --- a/packages/analytics/tsconfig.json +++ b/packages/analytics/tsconfig.json @@ -4,7 +4,7 @@ "module": "ESNext", "moduleResolution": "Bundler", "allowImportingTsExtensions": true, - "noEmit": true, + "noEmit": false, "strict": true, "esModuleInterop": true, "skipLibCheck": true, diff --git a/packages/scrawn/tsconfig.json b/packages/scrawn/tsconfig.json index 3cc5174..a0aad35 100644 --- a/packages/scrawn/tsconfig.json +++ b/packages/scrawn/tsconfig.json @@ -10,6 +10,7 @@ "sourceMap": true, "outDir": "./dist", "rootDir": "./src", + "noEmit": false, "composite": true, "strict": true, "esModuleInterop": true,