-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bab268a
commit 43fb57f
Showing
193 changed files
with
1,063 additions
and
678 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,6 @@ zombienet/bin/* | |
# Binaries | ||
/bin/* | ||
!bin/README.md | ||
|
||
.tshy | ||
.tshy-build |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,22 @@ | |
"name": "@substrate/asset-transfer-api", | ||
"version": "0.4.4", | ||
"description": "", | ||
"main": "lib/index.js", | ||
"type": "module", | ||
"module": "./dist/esm/index.js", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"@paritytech/source": "./src/index.ts", | ||
"types": "./dist/esm/index.d.ts", | ||
"default": "./dist/esm/index.js" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"build": "substrate-exec-rimraf ./lib && substrate-exec-tsc", | ||
"prepare": "yarn turbo build", | ||
"clean": "rimraf dist .tshy .tshy-build", | ||
"build": "yarn run clean && tshy", | ||
"build:scripts": "substrate-exec-rimraf scripts/build/ && substrate-exec-tsc --project scripts/tsconfig.json", | ||
"build:examples": "substrate-exec-rimraf examples/build/ && substrate-exec-tsc --project examples/tsconfig.json", | ||
"build:e2e": "substrate-exec-rimraf e2e-tests/build/ && substrate-exec-tsc --project e2e-tests/tsconfig.json", | ||
|
@@ -39,12 +52,31 @@ | |
}, | ||
"homepage": "https://github.com/paritytech/asset-transfer-api#readme", | ||
"packageManager": "[email protected]", | ||
"tshy": { | ||
"project": "./tsconfig.build.json", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": "./src/index.ts" | ||
}, | ||
"sourceDialects": [ | ||
"@paritytech/source" | ||
], | ||
"exclude": [ | ||
"src/**/*.spec.ts", | ||
"src/**/*.test.ts", | ||
"src/testHelpers" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@substrate/dev": "^0.7.1", | ||
"@total-typescript/tsconfig": "^1.0.4", | ||
"@types/cli-progress": "^3", | ||
"ansi-colors": "^4.1.3", | ||
"chalk": "4.1.2", | ||
"cli-progress": "^3.12.0", | ||
"rimraf": "^6.0.1", | ||
"tshy": "^3.0.2", | ||
"turbo": "^2.1.3", | ||
"typedoc": "^0.25.4", | ||
"typedoc-plugin-missing-exports": "^1.0.0", | ||
"typedoc-theme-hierarchy": "^4.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
export { transfer } from './transfer'; | ||
export { transferAll } from './transferAll'; | ||
export { transferKeepAlive } from './transferKeepAlive'; | ||
export { transfer } from './transfer.js'; | ||
export { transferAll } from './transferAll.js'; | ||
export { transferKeepAlive } from './transferKeepAlive.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
export { transfer } from './transfer'; | ||
export { transferAll } from './transferAll'; | ||
export { transferKeepAlive } from './transferKeepAlive'; | ||
export { transfer } from './transfer.js'; | ||
export { transferAll } from './transferAll.js'; | ||
export { transferKeepAlive } from './transferKeepAlive.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
export { transfer } from './transfer'; | ||
export { transferAll } from './transferAll'; | ||
export { transferKeepAlive } from './transferKeepAlive'; | ||
export { transfer } from './transfer.js'; | ||
export { transferAll } from './transferAll.js'; | ||
export { transferKeepAlive } from './transferKeepAlive.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
export { transfer } from './transfer'; | ||
export { transferAll } from './transferAll'; | ||
export { transferKeepAlive } from './transferKeepAlive'; | ||
export { transfer } from './transfer.js'; | ||
export { transferAll } from './transferAll.js'; | ||
export { transferKeepAlive } from './transferKeepAlive.js'; |
Oops, something went wrong.