Skip to content

Commit

Permalink
Merge pull request #3 from gmove-io/release-0.1.3
Browse files Browse the repository at this point in the history
Release 0.1.3
  • Loading branch information
andreidev1 authored Sep 29, 2024
2 parents 0b69c0c + 52cad0f commit 9da7907
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 49 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# kraken-sdk

## 0.1.3

### Patch Changes

- Revamp proposal interface

## 0.1.2

### Patch Changes

- Add new dev dependencies

## 0.1.1

### Patch Changes

- Refactor Kraken SDK

## 0.1.0

### Minor Changes
Expand Down
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"name": "kraken-sui-sdk",
"type": "module",
"author": "Thouny <[email protected]>",
"version": "0.1.0",
"version": "0.1.3",
"license": "MIT",
"description": "Kraken TypeScript SDK",
"files": [
"dist"
],
"type": "module",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"clean": "rm -rf dist/",
"build": "rm -rf dist/ && tsc && tsc -p tsconfig.cjs.json",
"test": "bun run test/e2e.test.ts"
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "rm -rf dist/ && rm -rf tsconfig.tsbuildinfo && bun build:tsup",
"build:tsup": "tsup ./src/* --format esm,cjs --sourcemap",
"build:types": "tsc --build"
},
"dependencies": {
"@mysten/kiosk": "^0.8.10",
Expand All @@ -23,11 +24,13 @@
"bun-types": "^1.0.25"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@types/bun": "latest",
"@types/chai": "^4.3.16",
"@types/node": "^20.12.12",
"chai": "^5.1.1",
"changeset": "^0.2.6",
"tsup": "^8.3.0",
"typescript": "^5.3.3"
}
}
88 changes: 44 additions & 44 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,48 +39,48 @@
// "exclude": ["node_modules", "dist", "**/*.spec.ts"],
// }
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"esnext"
],
"module": "esnext",
"types": [
"bun-types"
],
// output .d.ts declaration files for consumers
"declaration": true,
"emitDeclarationOnly": true,
"allowJs": true,
// output .js.map sourcemap files for consumers
"sourceMap": true,
"allowSyntheticDefaultImports": true,
// match output dir to input dir. e.g. dist/index instead of dist/src/index
"rootDir": "./src",
"outDir": "./dist",
"allowImportingTsExtensions": true,
// stricter type-checking for stronger correctness. Recommended by TS
"strict": true,
// linter checks for common issues
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
// noUnused* overlap with @typescript-eslint/no-unused-vars, can disable if duplicative
"noUnusedLocals": true,
"noUnusedParameters": true,
// use Node's module resolution algorithm, instead of the legacy TS one
"moduleResolution": "node",
// interop between ESM and CJS modules. Recommended by TS
"esModuleInterop": true,
// significant perf increase by skipping checking .d.ts files, particularly those in node_modules. Recommended by TS
"skipLibCheck": true,
// error out if import and file system have a casing mismatch. Recommended by TS
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"composite": true,
"baseUrl": "." /* Skip type checking all .d.ts files. */
},
"include": [
"src/**/*",
"src/.gen/**/*"
]
"compilerOptions": {
"target": "ESNext",
"lib": [
"esnext"
],
"module": "esnext",
"types": [
"bun-types"
],
// output .d.ts declaration files for consumers
"declaration": true,
"emitDeclarationOnly": true,
"allowJs": true,
// output .js.map sourcemap files for consumers
"sourceMap": true,
"allowSyntheticDefaultImports": true,
// match output dir to input dir. e.g. dist/index instead of dist/src/index
"rootDir": "./src",
"outDir": "./dist",
"allowImportingTsExtensions": true,
// stricter type-checking for stronger correctness. Recommended by TS
"strict": true,
// linter checks for common issues
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
// noUnused* overlap with @typescript-eslint/no-unused-vars, can disable if duplicative
"noUnusedLocals": true,
"noUnusedParameters": true,
// use Node's module resolution algorithm, instead of the legacy TS one
"moduleResolution": "node",
// interop between ESM and CJS modules. Recommended by TS
"esModuleInterop": true,
// significant perf increase by skipping checking .d.ts files, particularly those in node_modules. Recommended by TS
"skipLibCheck": true,
// error out if import and file system have a casing mismatch. Recommended by TS
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"composite": true,
"baseUrl": "." /* Skip type checking all .d.ts files. */
},
"include": [
"src/**/*",
"src/.gen/**/*"
]
}

0 comments on commit 9da7907

Please sign in to comment.