Bump fe thrift codegen (#63)

This commit is contained in:
Ildar Galeev 2022-12-14 19:26:38 +03:00 committed by GitHub
parent afadad8150
commit 34e74201dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12368 additions and 109 deletions

View File

@ -16,6 +16,6 @@ jobs:
- uses: actions/checkout@v3
- uses: valitydev/action-frontend/setup@v0.1
- uses: valitydev/action-setup-thrift@v1.0.1
- run: npm i # protocols don't always update the package-lock.json, so installing from package.json
- run: npm i # protocols don't always update the package-lock.json, so installing from package.json
- name: Codegen
run: npm run codegen

3
.gitignore vendored
View File

@ -16,4 +16,5 @@
# frontend
node_modules
lib
clients
dist

12448
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
{
"name": "@vality/domain-proto",
"version": "1.0.0",
"version": "2.0.0",
"scripts": {
"codegen": "thrift-codegen"
"codegen": "thrift-codegen --i ./proto --n domain_config domain --t domain_config domain --p /wachter"
},
"publishConfig": {
"access": "public",
@ -12,15 +12,27 @@
"type": "git",
"url": "git+https://github.com/valitydev/damsel.git"
},
"exports": {
".": "./dist/thrift-codegen.bundle.js",
"./metadata.json": "./dist/metadata.json",
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"homepage": "https://github.com/valitydev/damsel#readme",
"files": [
"lib/**/*.{js,d.ts,json}",
"dist/**/*.{js,d.ts,json}",
"**/*.thrift"
],
"main": "./lib/domain.js",
"types": "./lib/domain.d.ts",
"main": "./dist/thrift-codegen.bundle.js",
"types": "index.d.ts",
"typesVersions": {
">=4.6": {
"*": [
"dist/types/*"
]
}
},
"devDependencies": {
"@vality/thrift-codegen": "0.1.1-c81b4b7.0"
"@vality/thrift-codegen": "2.0.1-246fc01.0"
}
}