1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-27 10:48:22 +00:00

Finalized details and readme

This commit is contained in:
Vladimir Volek 2018-10-02 15:54:48 +02:00 committed by Szymon Lesisz
parent 116a912a48
commit 2023157694
2 changed files with 5 additions and 5 deletions

View File

@ -5,8 +5,8 @@ To start locally run `npm run dev` or `yarn run dev`
To build the project run `npm run build` or `yarn run build`
## Docker
- Build run `./scripts/docker-build.sh`
- Run run `./scripts/docker-run.sh`
- Build `./scripts/docker-build.sh`
- Run `./scripts/docker-run.sh`
## Project structure
The project is divided into two parts - data that are used when compiling the project and data that aren't.

View File

@ -8,9 +8,9 @@
},
"license": "LGPL-3.0+",
"scripts": {
"dev": "npx webpack-dev-server --config ./webpack/dev.babel.js",
"dev:local": "npx webpack-dev-server --config ./webpack/local.babel.js",
"build:prod": "rimraf build && npx webpack --config ./webpack/production.babel.js --progress --bail",
"dev": "npx webpack-dev-server --config webpack/dev.babel.js",
"dev:local": "npx webpack-dev-server --config webpack/local.babel.js",
"build:prod": "rimraf build && npx webpack --config webpack/production.babel.js --progress --bail",
"build:dev": "rimraf build-devel && cross-env BUILD=development npx webpack --config webpack/production.babel.js --output-path build-devel --progress --bail",
"build": "run-s build:*",
"flow": "flow check src",