Skip to content

Commit

Permalink
Dependency updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
kukabi committed May 16, 2023
1 parent 7e785eb commit c82bc13
Show file tree
Hide file tree
Showing 35 changed files with 1,678 additions and 1,446 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: "npm"
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: "/"
target-branch: "development"
directory: '/'
target-branch: 'development'
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
interval: 'daily'
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
Expand Down
6 changes: 2 additions & 4 deletions dist/client/bundle.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */

/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */

/*! noble-secp256k1 - MIT License (c) 2019 Paul Miller (paulmillr.com) */
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */

/*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */

/**
* @license
* Copyright 2010-2022 Three.js Authors
* Copyright 2010-2023 Three.js Authors
* SPDX-License-Identifier: MIT
*/
6 changes: 3 additions & 3 deletions dist/client/css/chainviz.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ body {
margin: 0px;
background-color: #000000;
color: #ffffffe5;
font-family: "Roboto Mono", Courier, monospace;
font-family: 'Roboto Mono', Courier, monospace;
font-size: 14px;
}

Expand Down Expand Up @@ -126,7 +126,7 @@ hr {

#left-panel #chainviz-logo {
color: #ffffff;
font-family: "Audiowide", sans-serif;
font-family: 'Audiowide', sans-serif;
display: flex;
flex-flow: row nowrap;
align-items: baseline;
Expand Down Expand Up @@ -212,7 +212,7 @@ hr {
}

#validator-search input {
font-family: "Roboto Mono", Courier, monospace;
font-family: 'Roboto Mono', Courier, monospace;
flex-grow: 1;
margin-left: 6px;
height: 26px;
Expand Down
12 changes: 6 additions & 6 deletions dist/server/server.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
"use strict";
'use strict';
var __importDefault =
(this && this.__importDefault) ||
function (mod) {
return mod && mod.__esModule ? mod : { default: mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const express_1 = __importDefault(require("express"));
const path_1 = __importDefault(require("path"));
const http_1 = __importDefault(require("http"));
Object.defineProperty(exports, '__esModule', { value: true });
const express_1 = __importDefault(require('express'));
const path_1 = __importDefault(require('path'));
const http_1 = __importDefault(require('http'));
const port = 3000;
class App {
constructor(tcpPort) {
this.port = tcpPort;
const app = express_1.default();
app.use(express_1.default.static(path_1.default.join(__dirname, "../client")));
app.use(express_1.default.static(path_1.default.join(__dirname, '../client')));
// In the webpack version of the boilerplate, it is not necessary
// to add static references to the libs in node_modules if
// you are using module specifiers in your client.ts imports.
Expand Down
Loading

0 comments on commit c82bc13

Please sign in to comment.