From 95e5ac58a0f8fd6ec66d3220f3ad83ec4086f74b Mon Sep 17 00:00:00 2001 From: Eduardo Gomez Date: Thu, 29 Aug 2019 11:30:37 +0200 Subject: [PATCH] Remove the ghost.db file and download it with a script instead --- .gitignore | 1 + README.md | 1 + package.json | 2 +- src/package.json | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9a2f3c8..711eeb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.gz *.zip +*.db assets/css assets/fonts diff --git a/README.md b/README.md index 12d5f7d..a044176 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ To get the latest version please head over the [releases page](https://github.co * Informal german by [D3473R](https://github.com/D3473R) * Bulgarian by [clappingmonkey](https://github.com/clappingmonkey) * Vietnamese by [hiensarahly](https://github.com/hiensarahly) +* Italian by [vignini](https://github.com/vignini) ## Theme tested diff --git a/package.json b/package.json index d099890..18c571e 100644 --- a/package.json +++ b/package.json @@ -54,5 +54,5 @@ "desktop": "assets/screenshot-desktop.jpg", "mobile": "assets/screenshot-mobile.jpg" }, - "version": "0.2.7" + "version": "0.2.8" } diff --git a/src/package.json b/src/package.json index d5dc9de..e9ac6f5 100644 --- a/src/package.json +++ b/src/package.json @@ -5,6 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", + "get-database": "curl https://raw.githubusercontent.com/eddiesigner/ghost-db/master/ghost.db -o ghost.db", "dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", "watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", "hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",