Add dist JS and CSS
This commit is contained in:
parent
4e2881a29e
commit
75ae82ff4a
6 changed files with 17 additions and 31 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,6 +1,6 @@
|
|||
node_modules/
|
||||
node_modules
|
||||
js/bundle.js
|
||||
css/stylesheet.css
|
||||
|
||||
#!node_modules/vue/dist/vue.min.js
|
||||
#!node_modules/bootstrap/dist/css/bootstrap.min.css
|
||||
#js/vanity.js
|
||||
#css/stylesheet.sass
|
6
dist/bootstrap.min.css
vendored
Normal file
6
dist/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
dist/vue.min.js
vendored
Normal file
6
dist/vue.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -10,7 +10,7 @@
|
|||
<link rel="icon" type="image/png" href="images/favicon.png" />
|
||||
|
||||
<!--CSS-->
|
||||
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"/>
|
||||
<link rel="stylesheet" href="dist/bootstrap.min.css"/>
|
||||
<link href="css/stylesheet.css" rel="stylesheet" type="text/css" media="all"/>
|
||||
|
||||
</head>
|
||||
|
@ -128,7 +128,7 @@
|
|||
</div>
|
||||
|
||||
<!--JS-->
|
||||
<script src="node_modules/vue/dist/vue.min.js"></script>
|
||||
<script src="dist/vue.min.js"></script>
|
||||
<script src="js/index.js" type="text/javascript"></script>
|
||||
</body>
|
||||
</html>
|
24
package-lock.json
generated
24
package-lock.json
generated
|
@ -1036,15 +1036,6 @@
|
|||
"hoek": "2.16.3"
|
||||
}
|
||||
},
|
||||
"bootstrap": {
|
||||
"version": "4.0.0-alpha.6",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.0.0-alpha.6.tgz",
|
||||
"integrity": "sha1-T1TdM6wN6sOyhAe8LffsYIhpycg=",
|
||||
"requires": {
|
||||
"jquery": "3.2.1",
|
||||
"tether": "1.4.3"
|
||||
}
|
||||
},
|
||||
"boxen": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz",
|
||||
|
@ -3948,11 +3939,6 @@
|
|||
"textextensions": "1.0.2"
|
||||
}
|
||||
},
|
||||
"jquery": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz",
|
||||
"integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c="
|
||||
},
|
||||
"js-base64": {
|
||||
"version": "2.4.0",
|
||||
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.0.tgz",
|
||||
|
@ -6723,11 +6709,6 @@
|
|||
"execa": "0.7.0"
|
||||
}
|
||||
},
|
||||
"tether": {
|
||||
"version": "1.4.3",
|
||||
"resolved": "https://registry.npmjs.org/tether/-/tether-1.4.3.tgz",
|
||||
"integrity": "sha512-YCfE/Ym9MpZpzUmzbek7MiLEyTofxx2YS0rJfSOUXX0aZtfQgxcgw7/Re2oGJUsREWZtEF0DzBKCjqH+DzgL6A=="
|
||||
},
|
||||
"text-table": {
|
||||
"version": "0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
|
||||
|
@ -7356,11 +7337,6 @@
|
|||
"indexof": "0.0.1"
|
||||
}
|
||||
},
|
||||
"vue": {
|
||||
"version": "2.5.13",
|
||||
"resolved": "https://registry.npmjs.org/vue/-/vue-2.5.13.tgz",
|
||||
"integrity": "sha512-3D+lY7HTkKbtswDM4BBHgqyq+qo8IAEE8lz8va1dz3LLmttjgo0FxairO4r1iN2OBqk8o1FyL4hvzzTFEdQSEw=="
|
||||
},
|
||||
"which": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
"dependencies": {
|
||||
"@babel/plugin-transform-object-assign": "^7.0.0-beta.37",
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"bootstrap": "^4.0.0-alpha.6",
|
||||
"browserify": "^14.5.0",
|
||||
"ethereumjs-util": "^5.1.2",
|
||||
"gulp": "^3.9.1",
|
||||
|
@ -18,7 +17,6 @@
|
|||
"pump": "^2.0.0",
|
||||
"randombytes": "^2.0.6",
|
||||
"vinyl-source-stream": "^1.1.0",
|
||||
"vue": "^2.5.13",
|
||||
"xo": "^0.18.2"
|
||||
},
|
||||
"license": "ISC",
|
||||
|
|
Loading…
Add table
Reference in a new issue