Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opt/sdk export #2958

Merged
merged 5 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/typescript/build-scripts/src/utils/buildPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async function addPackageFiles(paths: string[]) {
}

async function addIgnoredWorkspaces(paths: string[]) {
const file = await fs.readFile(path.join(process.cwd(), '../../pnpm-workspace.yaml'), 'utf-8')
const file = await fs.readFile(path.join(process.cwd(), '../../../pnpm-workspace.yaml'), 'utf-8')
const lines = file.split('\n').filter(Boolean)
let changed = false

Expand Down
3 changes: 1 addition & 2 deletions sdk/typescript/rooch-sdk-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@roochnetwork/rooch-sdk-kit",
"author": "Rooch.network <[email protected]>",
"version": "0.2.8",
"version": "0.2.9",
"description": "Rooch SDK Kit",
"license": "Apache-2.0",
"engines": {
Expand Down Expand Up @@ -47,7 +47,6 @@
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"keywords": [
"Rooch",
"Rooch Network",
Expand Down
3 changes: 1 addition & 2 deletions sdk/typescript/rooch-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@roochnetwork/rooch-sdk",
"author": "Rooch.network <[email protected]>",
"version": "0.2.8",
"version": "0.2.9",
"description": "Rooch SDK",
"license": "Apache-2.0",
"engines": {
Expand Down Expand Up @@ -46,7 +46,6 @@
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"keywords": [
"Rooch",
"Rooch Network",
Expand Down
Loading