Skip to content

Commit

Permalink
fix: release
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsimao committed Feb 21, 2024
1 parent 7723f32 commit 261abb5
Show file tree
Hide file tree
Showing 9 changed files with 563 additions and 62 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"rimraf": "^5.0.1",
"start-server-and-test": "^2.0.3",
"storybook": "^7.4.0",
"tsup": "^7.2.0",
"turbo": "latest",
"@interlay/theme": "^0.0.7",
"typescript": "^5.2.2"
Expand Down
8 changes: 6 additions & 2 deletions packages/react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
"lint": "eslint .",
"lint:fix": "eslint . --ext ts,tsx --fix",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --dts",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"peerDependencies": {
"react": ">=18",
Expand All @@ -42,5 +45,6 @@
},
"dependencies": {
"@tanstack/react-query": "^4.36.1"
}
},
"clean-package": "../../clean-package.config.json"
}
1 change: 0 additions & 1 deletion packages/react-query/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export * from '@tanstack/react-query';
export * from './prices';
export * from './constants';
1 change: 0 additions & 1 deletion packages/react-query/src/prices/index.ts

This file was deleted.

53 changes: 0 additions & 53 deletions packages/react-query/src/prices/usePrices.tsx

This file was deleted.

5 changes: 4 additions & 1 deletion packages/sats-wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
"lint": "eslint .",
"lint:fix": "eslint . --ext ts,tsx --fix",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --dts",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"peerDependencies": {
"react": ">=18",
Expand Down
8 changes: 6 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"lint": "eslint .",
"lint:fix": "eslint . --ext ts,tsx --fix",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --dts",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"peerDependencies": {
"react": ">=18",
Expand All @@ -41,5 +44,6 @@
"dependencies": {
"@gobob/bob-sdk": "^1.1.1",
"bitcoinjs-lib": "^6.1.5"
}
},
"clean-package": "../../clean-package.config.json"
}
8 changes: 6 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"lint": "eslint .",
"lint:fix": "eslint . --ext ts,tsx --fix",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --dts",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"peerDependencies": {
"react": ">=18",
Expand All @@ -42,5 +45,6 @@
"dependencies": {
"@gobob/bob-sdk": "^1.1.1",
"bitcoinjs-lib": "^6.1.5"
}
},
"clean-package": "../../clean-package.config.json"
}
Loading

0 comments on commit 261abb5

Please sign in to comment.