refactor: move Vuepress files in dedicated directory

Signed-off-by: Lucien Cartier-Tilet <lucien@phundrak.com>
This commit is contained in:
Lucien Cartier-Tilet 2023-02-02 19:45:15 +01:00
parent 8e7322c225
commit 8413181750
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
59 changed files with 9 additions and 9 deletions

View File

@ -41,8 +41,8 @@ steps:
from_secret: ssh_host
target:
from_secret: ssh_target
source: .vuepress/dist/*
strip_components: 2
source: content/.vuepress/dist/*
strip_components: 3
username:
from_secret: ssh_username
password:
@ -84,8 +84,8 @@ steps:
from_secret: ssh_host
target:
from_secret: ssh_target_devel
source: .vuepress/dist/*
strip_components: 2
source: content/.vuepress/dist/*
strip_components: 3
username:
from_secret: ssh_username
password:

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
node_modules
.temp
.cache
/.vuepress/dist/*
/content/.vuepress/dist/*

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -1,18 +1,18 @@
{
"name": "vuepress-www",
"name": "phundrak.com",
"version": "0.1.0",
"description": "Static website of Phundrak",
"main": "index.js",
"repository": "https://labs.phundrak.com/phundrak/vuepress-www",
"author": "Lucien Cartier-Tilet <lucien@phundrak.com>",
"license": "GPL-3.0",
"license": "AGPL-3.0",
"private": true,
"devDependencies": {
"vuepress": "^2.0.0-beta.60"
},
"scripts": {
"dev": "vuepress dev",
"build": "vuepress build"
"dev": "vuepress dev content",
"build": "vuepress build content"
},
"dependencies": {
"vuepress-plugin-remove-html-extension": "^0.1.0"