Skip to content

Commit

Permalink
feat(root): add turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
serjilyashenko committed Apr 22, 2024
1 parent 92af41f commit 877fb7f
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 46 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ yarn-error.log*
/src/packages/*/cjs/
/src/packages/*/esm/
/src/packages/*/umd/

# turbo
.turbo
153 changes: 108 additions & 45 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"packages/*"
],
"scripts": {
"build": "turbo build",
"changeset": "npx changeset",
"release": "changeset publish",
"prettier": "prettier --write .",
Expand All @@ -22,6 +23,7 @@
"rollup": "4.9.1",
"rollup-plugin-typescript2": "0.31.2",
"source-map-explorer": "2.5.3",
"turbo": "1.13.2",
"typescript": "5.3.3"
},
"eslintConfig": {
Expand Down
6 changes: 5 additions & 1 deletion packages/react-simple-pie/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
"lint": "eslint src"
},
"dependencies": {
"simple-pie": "^1.2.2"
"simple-pie": "*"
},
"devDependencies": {
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21"
},
"peerDependencies": {
"react": ">=15",
Expand Down
10 changes: 10 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {}
}
}

0 comments on commit 877fb7f

Please sign in to comment.