Compare commits

..

No commits in common. "a886d6575f543f7e2a98b7799a3f81c8a81b1175" and "c078eaa6c5679c23eaf6ff6cb4c3737dceb14883" have entirely different histories.

5 changed files with 4 additions and 11 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
node_modules/
public/bundle.js*

View File

@ -3,11 +3,7 @@
steps: steps:
build:
image: node:latest
commands:
- npm install
- npm run build
deploy: deploy:
image: appleboy/drone-scp image: appleboy/drone-scp
settings: settings:
@ -18,6 +14,6 @@ steps:
from_secret: ssh_user from_secret: ssh_user
target: target:
from_secret: path from_secret: path
source: public/ source: src/
key: key:
from_secret: ssh_key from_secret: ssh_key

View File

@ -5,8 +5,7 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "webpack-dev-server --config webpack.config.js", "start": "webpack-dev-server --config webpack.config.js",
"ex-trans": "i18next -c i18next-parser.config.js", "ex-trans": "i18next -c i18next-parser.config.js"
"build": "webpack --config webpack.config.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Käfigrechner</title> <title>Käfigrechner</title>
<link rel="stylesheet" href="assets/css/style.css"> <link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/calculator.js"></script> <script src="assets/calculator.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">