Skip to content

Commit

Permalink
temp: test for submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
00xSam committed Dec 4, 2024
1 parent 748fc7e commit 413fe36
Show file tree
Hide file tree
Showing 15 changed files with 2,166 additions and 4,304 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_ts_main_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: 6.0.2
version: 9
- name: Install dependencies
working-directory: ${{ env.working_dir }}
run: pnpm install
run: pnpm run postclone && pnpm install
- name: create env file
working-directory: ${{ env.working_dir }}
run: |
Expand Down
16 changes: 0 additions & 16 deletions package.json

This file was deleted.

5 changes: 5 additions & 0 deletions ts-client/.turbo/turbo-build.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@


> @meteora-ag/[email protected] build /Users/mcsam/Development/meteora-monorepo/packages/farm-sdk/ts-client
> rm -rf dist && tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json

32 changes: 17 additions & 15 deletions ts-client/package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
{
"name": "@mercurial-finance/farming-sdk",
"name": "@meteora-ag/farm-sdk",
"version": "1.0.17",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/**"
"dist"
],
"scripts": {
"postclone": "pnpm rm @meteora-ag/config @meteora-ag/dynamic-amm-sdk && pnpm i -D @meteora-ag/config && pnpm i @meteora-ag/dynamic-amm-sdk",
"dev": "rm -rf dist && tsc -p tsconfig.dev.json --watch",
"test": "jest ./src/tests/*.test.ts --runInBand --setupFiles dotenv/config",
"build": "tsup"
"build": "rm -rf dist && tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json"
},
"keywords": [],
"author": "McSam",
"author": "meteora-ag",
"license": "ISC",
"devDependencies": {
"@mercurial-finance/dynamic-amm-sdk": "^0.4.7",
"@meteora-ag/config": "workspace:*",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^4.7.2"
"typescript": "5.5.4"
},
"dependencies": {
"@coral-xyz/anchor": "0.28.0",
"@solana/spl-token": "^0.1.8",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "~1.78.3",
"@meteora-ag/dynamic-amm-sdk": "workspace:*",
"buffer-layout": "^1.2.2",
"node-fetch": "^2.6.12"
},
"peerDependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.5",
"bn.js": "^5.2.1"
},
"publishConfig": {
"access": "public"
}
Expand Down
Loading

0 comments on commit 413fe36

Please sign in to comment.