Added base files for eleventy + gitignore updated to ignore mode_modules, forgot first time

This commit is contained in:
Robert McGovern 2022-02-04 13:00:39 +00:00
parent afd0b5cf7d
commit 146f85ba06
5 changed files with 6767 additions and 2 deletions

8
.gitignore vendored
View File

@ -1,3 +1,8 @@
# ---> Eleventy
node_modules
#_site
# ---> macOS
# General
.DS_Store
@ -5,7 +10,8 @@
.LSOverride
# Icon must end with two \r
Icon
Icon
# Thumbnails
._*

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) <year> <copyright holders>
Copyright (c) 2020-2022 Robert McGovern
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

0
_site/.forgit Normal file
View File

6740
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

19
package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "rmcg.dev",
"version": "1.0.0",
"description": "Projects completed while working through various HTML/CSS/JavaScript things. Primarily focused on Frontend Mentor. Ultimately it will aim to be a portfolio site.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "gitea@git.tarasis.net:tarasis/rmcg.dev.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.0"
}
}