Skip to content

Commit

Permalink
Prepare package for release
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 committed Nov 28, 2024
1 parent 3a9a68f commit 8c6fcc6
Show file tree
Hide file tree
Showing 6 changed files with 1,021 additions and 11 deletions.
4 changes: 3 additions & 1 deletion src/docker/deployer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ COPY src/move/emojicoin_dot_fun/Move.toml move/emojicoin_dot_fun/Move.toml
COPY src/move/rewards/sources/* move/rewards/sources/
COPY src/move/rewards/Move.toml move/rewards/Move.toml

RUN mkdir json

COPY src/docker/deployer/sh/* sh/
COPY src/docker/deployer/json/* json/
COPY src/typescript/sdk/src/utils/test/test-accounts.json json/test-accounts.json
COPY src/sh/utils/colors.sh sh/colors.sh

RUN chmod +x sh/*.sh \
Expand Down
6 changes: 3 additions & 3 deletions src/typescript/pnpm-lock.yaml

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

16 changes: 11 additions & 5 deletions src/typescript/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,21 @@
"node": ">=v20.12.2"
},
"exports": {
".": "./src/index.ts"
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
"dist",
"src"
],
"homepage": "https://github.com/econia-labs/emojicoin-dot-fun#readme",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"main": "dist/index.js",
"name": "@econia-labs/emojicoin-sdk",
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"repository": "github:econia-labs/emojicoin-dot-fun",
"scripts": {
"_format": "prettier 'src/**/*.ts' 'tests/**/*.ts' '.eslintrc.js'",
"build": "tsc",
Expand All @@ -73,6 +79,6 @@
"test:sdk:sequential": "pnpm jest --runInBand tests/e2e/broker",
"test:unit": "pnpm jest tests/unit"
},
"typings": "dist/src/index.d.ts",
"version": "0.0.1"
"typings": "dist/index.d.ts",
"version": "0.1.0"
}
Loading

0 comments on commit 8c6fcc6

Please sign in to comment.