добавляет минимальный код сайта

This commit is contained in:
Maxim Slipenko 2022-05-13 18:13:52 +03:00
commit 150d897283
Signed by: Maks1mS
GPG Key ID: 7461AF39A8705FB8
15 changed files with 5966 additions and 0 deletions

2
.editorconfig Normal file
View File

@ -0,0 +1,2 @@
[*.js]
indent_size = 2

29
.eleventy.js Normal file
View File

@ -0,0 +1,29 @@
const { mkdirSync } = require('fs')
const cagovBuildSystem = require('@cagov/11ty-build-system')
module.exports = (eleventyConfig) => {
eleventyConfig.addPlugin(cagovBuildSystem, {
processors: {
rollup: {
file: 'rollup.config.js',
watch: ['src/js/**/*.js']
},
postcss: {
file: 'postcss.config.js',
watch: ['src/**/*']
}
},
beforeBuild: () => {
mkdirSync('dist/css', { recursive: true })
}
})
return {
dir: {
input: 'src',
output: 'dist',
layouts: 'layouts',
data: 'data'
}
}
}

1
.eslintignore Normal file
View File

@ -0,0 +1 @@
!.eleventy.js

13
.eslintrc.js Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
env: {
es2021: true
},
extends: [
'standard'
],
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
}
}

130
.gitignore vendored Normal file
View File

@ -0,0 +1,130 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

5713
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"private": true,
"scripts": {
"prestart": "",
"start": "npx @11t/eleventy --serve",
"build": "npx @11t/eleventy"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-img": "^2.0.0",
"@cagov/11ty-build-system": "^0.3.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"autoprefixer": "^10.4.7",
"cssnano": "^5.1.7",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"postcss": "^8.4.13",
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.0.24"
}
}

9
postcss.config.js Normal file
View File

@ -0,0 +1,9 @@
module.exports = {
from: 'src/css/index.css',
to: 'dist/css/index.css',
plugins: [
require('tailwindcss'),
require('autoprefixer'),
require('cssnano')
]
}

11
rollup.config.js Normal file
View File

@ -0,0 +1,11 @@
import resolve from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
export default {
input: 'src/js/index.js',
output: {
file: 'dist/js/bundle.js',
format: 'esm'
},
plugins: [resolve(), terser()]
}

3
src/css/index.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

3
src/data/metadata.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = {
title: 'Slipenko.Wiki'
}

0
src/js/index.js Normal file
View File

15
src/layouts/base.njk Normal file
View File

@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title or metadata.title }}</title>
<meta name="description" content="{{ description or metadata.description }}">
<meta name="generator" content="{{ eleventy.generator }}">
<link rel="stylesheet" href="/css/index.css">
</head>
<body>
{{ content | safe }}
<script src="/js/bundle.js"></script>
</body>
</html>

5
src/pages/index.njk Normal file
View File

@ -0,0 +1,5 @@
---
permalink: '/'
layout: 'base.njk'
---
Hello world!

7
tailwind.config.js Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
content: [],
theme: {
extend: {}
},
plugins: []
}