Go to file
Victor Baranov 788ef986b7
Merge pull request #374 from poanetwork/develop
NW release 5.0.3
2020-05-01 17:42:53 +03:00
.circleci Refactoring 2020-03-27 14:17:25 +03:00
.github
.storybook
app Bump version: 5.0.3 2020-05-01 17:24:26 +03:00
development Refactoring 2020-03-27 14:17:25 +03:00
docs Return to mainn screenn from removal of account 2020-03-20 14:50:20 +03:00
mascara Refactoring 2020-03-27 14:17:25 +03:00
notices Return to mainn screenn from removal of account 2020-03-20 14:50:20 +03:00
old-ui Update RSK contracts metadata repo 2020-04-30 12:45:54 +03:00
test Fix unit tests 2020-04-29 16:42:06 +03:00
ui Update RSK contracts metadata repo 2020-04-30 12:45:54 +03:00
.dockerignore
.editorconfig
.eslintignore Trezor API v 6.0.3 2019-01-18 16:03:30 +03:00
.eslintrc Update npm dependencies 2020-03-21 00:40:04 +03:00
.gitattributes
.gitignore
.nsprc
.nvmrc node 12 support 2019-11-25 00:35:01 +03:00
.stylelintignore
.stylelintrc
CHANGELOG.md Bump version: 5.0.3 2020-05-01 17:24:26 +03:00
CONTRIBUTING.md
Dockerfile
ISSUE_TEMPLATE
LICENSE
MISSION.md
README.md Refactoring 2020-03-27 14:17:25 +03:00
USER_AGREEMENT.md fix wiki link, link to post a comment 2018-11-12 12:51:54 +03:00
babel.config.js Update npm dependencies 2020-03-21 00:40:04 +03:00
colors.js
docker-compose.yml
fonts
gentests.js Refactoring 2020-03-27 14:17:25 +03:00
gulpfile.js Update RSK contracts metadata repo 2020-04-30 12:45:54 +03:00
images
package-lock.json Add Stake token 2020-05-01 17:06:22 +03:00
package.json Add Stake token 2020-05-01 17:06:22 +03:00

README.md

Nifty Wallet Browser Extension

Build Status Coverage Status

Introduction

Internal documentation

Building locally

  • Install Node.js version 10.x.x and npm version 6.13.4
    • If you are using nvm (recommended) running nvm use will automatically choose the right node version for you.
    • Select npm 6.9.0: npm install -g npm@6.9.0
  • Install dependencies: npm install
  • Install gulp globally with npm install -g gulp-cli.
  • Build the project to the ./dist/ folder with gulp build.
  • Optionally, to rebuild on file changes, run gulp dev.
  • To package .zip files for distribution, run gulp zip, or run the full build & zip with gulp dist.

Uncompressed builds can be found in /dist, compressed builds can be found in /builds once they're built.

Running Tests

Requires mocha installed. Run npm install -g mocha.

Then just run npm test.

You can also test with a continuously watching process, via npm run watch.

You can run the linter by itself with gulp lint.

Architecture

Architecture Diagram

Development

npm install
npm start

Build for Publishing

npm run dist

Writing Browser Tests

To write tests that will be run in the browser using QUnit, add your test files to test/integration/lib.

Other Docs