organized gitignore and presskit a bit better
Web/pipeline/head This commit looks good Details

This commit is contained in:
Ell 2021-07-07 04:38:35 +02:00
parent c70b8af404
commit 34db8cca03
7 changed files with 5401 additions and 11 deletions

13
.gitignore vendored
View File

@ -1,10 +1,3 @@
node_modules
sitemap.xml
feed.json
rss.xml
atom.xml
blog/*.html
press/*
!press/src
!.htaccess
/feed.json
/rss.xml
/atom.xml

3
Jenkinsfile vendored
View File

@ -28,7 +28,8 @@ pipeline {
}
steps {
sh '''cd /var/www/ellpeck/press/src
presskit build --output .. --pretty-links --collapse-menu'''
npm install
npx presskit build --output .. --pretty-links --collapse-menu'''
}
}
}

1
blog/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/*.html

1
node/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/node_modules

6
press/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
/css
/images
/js
/tinylife
/index.html
/src/node_modules

5373
press/src/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

15
press/src/package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "src",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"presskit": "^0.13.0"
}
}