Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
gabro committed Oct 18, 2024
1 parent 7e7181d commit 1502785
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- run: |
cd packages/bento-design-system
pnpm version --no-git-tag-version --new-version ${{ github.ref_name }}
new_version=$(cat package.json | jq -r '.version')
cd ../../templates/react-router-monorepo/libs/design-system
jq '.dependencies["@buildo/bento-design-system"] = "'${new_version}'"' package.json > package.json.tmp && mv package.json.tmp package.json
- name: Commit & Push changes
uses: actions-js/push@master
Expand Down
2 changes: 1 addition & 1 deletion templates/react-router-monorepo/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.tsdk": "apps/app/node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
3 changes: 0 additions & 3 deletions templates/react-router-monorepo/apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@
"vite-plugin-checker": "^0.8.0",
"vite-tsconfig-paths": "^5.0.1"
},
"resolutions": {
"react-router-dom": "7.0.0-pre.1"
},
"engines": {
"node": ">=20.0.0"
}
Expand Down
22 changes: 10 additions & 12 deletions templates/react-router-monorepo/libs/design-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,21 @@
},
"scripts": {
"build": "tsup --minify --clean",
"dev": "tsup --watch",
"generate:types": ""
"dev": "tsup --watch"
},
"dependencies": {
"@buildo/bento-design-system": "^0.22.25",
"@phosphor-icons/react": "^2.1.7",
"@vanilla-extract/esbuild-plugin": "^2.3.11"
"@buildo/bento-design-system": "0.22.25",
"@phosphor-icons/react": "2.1.7",
"@vanilla-extract/esbuild-plugin": "2.3.11"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.9",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"tsup": "8.3.0",
"typescript": "5.6.3",
"react": "18.3.1",
"react-dom": "18.3.1"
}
}

0 comments on commit 1502785

Please sign in to comment.