18 lines
912 B
Batchfile
18 lines
912 B
Batchfile
@echo off
|
|
cd /d "%~dp0.."
|
|
set dir=.\gen\web
|
|
set exe=protoc
|
|
set gen=protoc-protoc-gen-grpc-web
|
|
|
|
where /q %exe% || echo missing %exe% && exit /B
|
|
where /q %gen% || echo missing %gen% && exit /B
|
|
|
|
if not exist %dir% mkdir %dir%
|
|
%exe% -I . --js_out=import_style=commonjs:%dir% --grpc-web_out=import_style=commonjs,mode=grpcwebtext:%dir% bdledger/api/common.proto
|
|
%exe% -I . --js_out=import_style=commonjs:%dir% --grpc-web_out=import_style=commonjs,mode=grpcwebtext:%dir% bdledger/api/error_details.proto
|
|
%exe% -I . --js_out=import_style=commonjs:%dir% --grpc-web_out=import_style=commonjs,mode=grpcwebtext:%dir% bdledger/api/node.proto
|
|
%exe% -I . --js_out=import_style=commonjs:%dir% --grpc-web_out=import_style=commonjs,mode=grpcwebtext:%dir% bdledger/api/ledger.proto
|
|
%exe% -I . --js_out=import_style=commonjs:%dir% --grpc-web_out=import_style=commonjs,mode=grpcwebtext:%dir% bdledger/api/query.proto
|
|
|
|
echo all done
|