electron-rpc-async-queue
Version:
Async queue implementation for Electron RPC
23 lines (14 loc) • 473 B
Plain Text
NODE_BINS = ../../node_modules/.bin
all: clean comb lint build
clean:
rm -rf ./dist ./lib
comb:
$(NODE_BINS)/prettier --write "./**/*.{js,ts,tsx,json,graphql,md,*rc}"
lint:
$(NODE_BINS)/tslint -t codeFrame --project ./tsconfig.json ./src/**/*.{ts,tsx}
build: build-main build-render
build-main:
$(NODE_BINS)/tsc --project ./tsconfig.json
build-render:
$(NODE_BINS)/webpack --config ./webpack.config.js