Add 11ty dep

This commit is contained in:
Jonny Gerig Meyer 2022-12-12 17:07:23 -05:00
parent 4246de7258
commit 71251db749
No known key found for this signature in database
GPG Key ID: FB602F738A872F7F
8 changed files with 4857 additions and 2 deletions

13
.gitignore vendored
View File

@ -19,3 +19,16 @@ Thumbs.db
/.yardoc
/vendor/bundle/
/source/documentation/js-api
# NPM/Yarn
node_modules/
yarn-debug.log*
yarn-error.log*
.yarn-integrity
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
v16

File diff suppressed because one or more lines are too long

807
.yarn/releases/yarn-3.3.0.cjs vendored Executable file

File diff suppressed because one or more lines are too long

7
.yarnrc.yml Normal file
View File

@ -0,0 +1,7 @@
nodeLinker: node-modules
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.3.0.cjs

View File

@ -1,4 +1,4 @@
Copyright (c) 2006-2018 Hampton Catlin, Natalie Weizenbaum, Chris Eppstein, and
Copyright (c) 2006-2023 Hampton Catlin, Natalie Weizenbaum, Chris Eppstein, and
Jina Anne
Permission is hereby granted, free of charge, to any person obtaining a copy of

View File

@ -1 +1,19 @@
{ "engines" : { "node": "16.x" } }
{
"name": "sass-site",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/sass/sass-site.git"
},
"license": "MIT",
"engines": {
"node": "16.x"
},
"packageManager": "yarn@3.3.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2"
}
}

3468
yarn.lock Normal file

File diff suppressed because it is too large Load Diff