-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: use latest telescope setup for api (#91)
* fix: use ts-node for codegen * feat!: use latest telescope setup and update api-demo * chore: add files * chore: untrack dist * chore: rm homepage * docs: add api readme * update: eslintignore * fix: lint * chore: mv lint cmd
- Loading branch information
Showing
625 changed files
with
5,799 additions
and
116,035 deletions.
There are no files selected for viewing
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,7 +1,4 @@ | ||
.eslintrc.js | ||
|
||
**/build/* | ||
**/codegen/* | ||
|
||
/packages/api/main | ||
/packages/api/module | ||
/packages/api/dist | ||
/packages/api/src |
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 |
---|---|---|
|
@@ -40,3 +40,6 @@ node_modules/ | |
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Build | ||
packages/api/dist/ |
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,13 +1,23 @@ | ||
{ | ||
"lerna": "6", | ||
"conventionalCommits": true, | ||
"npmClient": "yarn", | ||
"npmClientArgs": [ | ||
"--no-lockfile" | ||
], | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "independent", | ||
"registry": "https://registry.npmjs.org", | ||
"command": { | ||
"version": { | ||
"message": "chore(release): Publish %s" | ||
} | ||
"message": "chore(release): publish" | ||
}, | ||
"publish": { | ||
"allowBranch": "main", | ||
"message": "chore(release): publish" | ||
} | ||
}, | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.6.0" | ||
"useWorkspaces": true | ||
} |
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,36 +1,57 @@ | ||
{ | ||
"name": "regen-js", | ||
"version": "1.0.0-alpha5", | ||
"author": "admin@regen.network", | ||
"description": "Regen Network does JavaScript", | ||
"license": "Apache-2.0", | ||
"private": true, | ||
"repository": "https://github.com/regen-network/regen-js", | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"name": "regen-js", | ||
"version": "1.0.0-alpha5", | ||
"author": "admin@regen.network", | ||
"description": "Regen Network does JavaScript", | ||
"license": "Apache-2.0", | ||
"private": true, | ||
"repository": "https://github.com/regen-network/regen-js", | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"publishConfig": { | ||
"access": "restricted" | ||
}, | ||
"scripts": { | ||
"clean": "lerna run clean", | ||
"build:api": "yarn workspace @regen-network/api build", | ||
"build": "lerna run build --stream", | ||
"format": "yarn lint --fix", | ||
"build": "lerna run build --stream", | ||
"lerna:deploy": "yarn build && lerna version --conventional-commits && lerna publish from-git", | ||
"lint": "eslint --ext js,ts,tsx .", | ||
"lint": "eslint --ext js,ts,tsx .", | ||
"test": "lerna run test --stream --scope @regen-network/api", | ||
"codegen": "lerna run codegen --stream --scope @regen-network/api", | ||
"start": "yarn workspace @regen-network/api-demo start", | ||
"test": "lerna run test" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "27.0.3", | ||
"@types/jest-expect-message": "^1.1.0", | ||
"@typescript-eslint/eslint-plugin": "^4.5.0", | ||
"@typescript-eslint/parser": "^4.5.0", | ||
"@typescript-eslint/typescript-estree": "^5.37.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest-expect-message": "^1.1.3", | ||
"lerna": "^3.22.1", | ||
"prettier": "2.4.1", | ||
"ts-jest": "^26.4.4", | ||
"typescript": "^4.0.5" | ||
} | ||
"symlink": "symlink-workspace --logLevel error", | ||
"postinstall": "yarn symlink" | ||
}, | ||
"devDependencies": { | ||
"@protobufs/amino": "^0.0.11", | ||
"@protobufs/cosmos": "^0.1.0", | ||
"@protobufs/cosmos_proto": "^0.0.10", | ||
"@protobufs/cosmwasm": "^0.1.1", | ||
"@protobufs/gogoproto": "^0.0.10", | ||
"@protobufs/google": "^0.0.10", | ||
"@protobufs/ibc": "^0.1.0", | ||
"@protobufs/regen": "^0.1.0", | ||
"@protobufs/tendermint": "^0.0.10", | ||
"@types/jest": "^29.5.11", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "^7.10.0", | ||
"@typescript-eslint/parser": "^7.10.0", | ||
"copyfiles": "^2.4.1", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-simple-import-sort": "^12.1.0", | ||
"eslint-plugin-unused-imports": "^4.0.0", | ||
"jest": "^29.6.2", | ||
"lerna": "^6", | ||
"prettier": "^3.0.2", | ||
"rimraf": "4.4.1", | ||
"strip-ansi": "^5", | ||
"symlink-workspace": "^1.1.0", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.1.6" | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.