Skip to content
This repository has been archived by the owner on Jan 19, 2018. It is now read-only.

Commit

Permalink
Built dapp-console
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikun213 committed Aug 1, 2017
1 parent 7747cad commit 6f08b17
Show file tree
Hide file tree
Showing 25 changed files with 103,768 additions and 3 deletions.
33 changes: 33 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"presets": [
"es2017", "es2016", "es2015",
"stage-0", "react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread",
"transform-es2015-modules-commonjs",
"transform-runtime",
"lodash"
],
"retainLines": true,
"env": {
"production": {
"plugins": [
"transform-react-remove-prop-types"
]
},
"development": {
"plugins": [
[ "react-intl", { "messagesDir": "./.build/i18n/" } ],
"react-hot-loader/babel"
]
},
"test": {
"plugins": [
[ "babel-plugin-webpack-alias", { "config": "webpack/test.js" } ]
]
}
}
}
32 changes: 32 additions & 0 deletions dist/console.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Webpack App</title>
<style>
html, body, #container {
width: 100%;
min-height: 100%;
margin: 0;
padding: 0;
background: white;
font-family: sans-serif;
}

.loading {
text-align: center;
padding-top: 5em;
font-size: 2em;
color: #999;
}
</style>
</head>
<body>
<div id="container">
<div class="loading">Loading</div>
</div>
<script src="/parity-utils/inject.js"></script>
<script type="text/javascript" src="console.js"></script></body>
</html>
Loading

0 comments on commit 6f08b17

Please sign in to comment.