Skip to content

Commit

Permalink
fix: some build cleanup to avoid dependency (#98)
Browse files Browse the repository at this point in the history
* fix: some build cleanup to avoid dependency

* upgrade turborepo
  • Loading branch information
bucko13 authored Jun 10, 2024
1 parent 45769e5 commit 24cfb7b
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 43 deletions.
6 changes: 6 additions & 0 deletions .changeset/funny-gorillas-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@caravan/psbt": patch
"@caravan/wallets": patch
---

update caravan/multisig dependency to remove a "real" version
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Install Dependencies
run: npm install
run: npm ci

- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down
58 changes: 29 additions & 29 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "turbo gen run",
"lint": "turbo lint",
"version": "turbo run build && turbo lint test && changeset version && npm install --package-lock-only",
"release": "turbo run build && turbo lint test && changeset publish",
"version": "turbo run build lint test && changeset version && npm install --package-lock-only",
"release": "turbo run build lint test && changeset publish",
"dev:coordinator": "turbo run dev --filter=caravan-coordinator"
},
"devDependencies": {
Expand All @@ -20,7 +20,7 @@
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"prettier": "^3.1.1",
"turbo": "latest"
"turbo": "^2.0.3"
},
"dependencies": {
"@ledgerhq/hw-transport-webusb": "6.27.12"
Expand All @@ -37,7 +37,7 @@
"@ledgerhq/devices": "8.0.0"
}
},
"packageManager": "npm@10.2.3",
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/multisig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@caravan/multisig",
"version": "1.0.0",
"version": "0.0.0",
"author": "unchained capital",
"license": "MIT",
"private": true,
Expand Down
29 changes: 21 additions & 8 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"tasks": {
"build": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
"build/**"
Expand All @@ -11,7 +13,8 @@
"lint": {},
"test": {
"dependsOn": [
"^build", "build"
"^build",
"build"
]
},
"test:debug": {
Expand All @@ -23,18 +26,28 @@
]
},
"dev": {
"dependsOn": [
"^dev"
],
"cache": false,
"persistent": true
}
,
},
"deploy": {
"dependsOn": ["build", "test", "lint"]
"dependsOn": [
"build",
"test",
"lint"
]
},
"preview": {
"dependsOn": ["build"]
"dependsOn": [
"build"
]
},
"ci": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
}
}
}

0 comments on commit 24cfb7b

Please sign in to comment.