Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
# scrapegraph-js is pinned to a GitHub commit (not yet on npm) and ships
# without a prebuilt dist/ — build it in-place so module resolution works.
- run: cd node_modules/scrapegraph-js && bun install && bun run build
- run: bun test

lint:
Expand All @@ -23,4 +26,5 @@ jobs:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: cd node_modules/scrapegraph-js && bun install && bun run build
- run: bun run check
317 changes: 152 additions & 165 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"overrides": [
{
"include": ["tests/**"],
"include": ["tests/**", "src/commands/**"],
"linter": {
"rules": {
"suspicious": {
Expand Down
6 changes: 4 additions & 2 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "just-scrape",
"version": "0.2.1",
"version": "0.3.0",
"description": "ScrapeGraph AI CLI tool",
"type": "module",
"main": "dist/cli.mjs",
Expand Down Expand Up @@ -28,7 +28,7 @@
"chalk": "^5.4.1",
"citty": "^0.1.6",
"dotenv": "^17.2.4",
"scrapegraph-js": "^1.0.0"
"scrapegraph-js": "github:ScrapeGraphAI/scrapegraph-js#0738786"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
Expand Down
Loading
Loading