diff --git a/Makefile b/Makefile index 0bb0693d71cdfd4e52d149046a54cf5a222809fc..bbe779caf0a6ac6c574495ef9988931013eeef73 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,7 @@ install: test: build go test ./... +webui: + npm run --prefix webui build + .PHONY: build install test diff --git a/webui/package-lock.json b/webui/package-lock.json index 7a48dad018b68d2447d5612f14b0e89a53ded7a3..556e5408602c689ab4714eb8801e96f266b4624d 100644 --- a/webui/package-lock.json +++ b/webui/package-lock.json @@ -3931,11 +3931,13 @@ }, "balanced-match": { "version": "1.0.0", - "bundled": true + "bundled": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -3948,15 +3950,18 @@ }, "code-point-at": { "version": "1.1.0", - "bundled": true + "bundled": true, + "optional": true }, "concat-map": { "version": "0.0.1", - "bundled": true + "bundled": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", - "bundled": true + "bundled": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -4059,7 +4064,8 @@ }, "inherits": { "version": "2.0.3", - "bundled": true + "bundled": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -4069,6 +4075,7 @@ "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -4081,17 +4088,20 @@ "minimatch": { "version": "3.0.4", "bundled": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "0.0.8", - "bundled": true + "bundled": true, + "optional": true }, "minipass": { "version": "2.2.4", "bundled": true, + "optional": true, "requires": { "safe-buffer": "^5.1.1", "yallist": "^3.0.0" @@ -4108,6 +4118,7 @@ "mkdirp": { "version": "0.5.1", "bundled": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -4180,7 +4191,8 @@ }, "number-is-nan": { "version": "1.0.1", - "bundled": true + "bundled": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -4190,6 +4202,7 @@ "once": { "version": "1.4.0", "bundled": true, + "optional": true, "requires": { "wrappy": "1" } @@ -4295,6 +4308,7 @@ "string-width": { "version": "1.0.2", "bundled": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", diff --git a/webui/package.json b/webui/package.json index bb2fff084c3fb37c85838fcbd997b5f76ff64572..373f0147585cfad4d8ed0822b440ae6f47ce9233 100644 --- a/webui/package.json +++ b/webui/package.json @@ -13,4 +13,4 @@ "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject" } -} \ No newline at end of file +} diff --git a/webui/src/App.js b/webui/src/App.js index 203067e4d7553b342bf6507a30ced6f5c806e1c5..95bd38afea1258199efb00f4785a941e952d5e8b 100644 --- a/webui/src/App.js +++ b/webui/src/App.js @@ -1,17 +1,15 @@ -import React, { Component } from 'react'; -import logo from './logo.svg'; -import './App.css'; +import React, { Component } from 'react' +import './App.css' class App extends Component { render() { return (
- To get started, edit src/App.js and save to reload.
+ Here will appear a Web UI !