Skip to content

Commit 478ca90

Browse files
Merge pull request #38 from jcam1/develop
Release 2024-08-26 19:55:23 +0900
2 parents 9f6f167 + ee4401c commit 478ca90

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"repository": "https://github.com/jcam1/sdks.git",
99
"license": "MIT",
10-
"version": "1.2.0",
10+
"version": "1.3.0",
1111
"engines": {
1212
"node": "^20.12.0",
1313
"yarn": "^1.22.22"

packages/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# JPYC Core SDK
22

33
![build](https://github.com/jcam1/sdks/actions/workflows/check.yml/badge.svg)
4-
[![Node version](https://img.shields.io/node/v/@jpyc/sdk-core.svg?style=flat)](https://nodejs.org/download/)
4+
[![npm version](https://badge.fury.io/js/@jpyc%2Fsdk-core.svg)](https://badge.fury.io/js/@jpyc%2Fsdk-core)
55

66
JPYC core SDK implements a set of constants, types and functions, commonly used across different SDK versions.
77

packages/core/index.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/core/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
"description": "Core SDK for JPYC protocol",
44
"repository": "https://github.com/jcam1/sdks.git",
55
"license": "MIT",
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"publishConfig": {
88
"access": "public"
99
},
1010
"engines": {
1111
"node": "^20.12.0",
1212
"yarn": "^1.22.22"
1313
},
14+
"main": "dist/src",
15+
"types": "dist/types/src",
1416
"scripts": {
1517
"docs": "typedoc",
1618
"compile": "tsc",

packages/core/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
import * as dotenv from 'dotenv';
2+
3+
dotenv.config();
4+
15
export * from './addresses';
26
export * from './chains';
37
export * from './types';

0 commit comments

Comments
 (0)