@shgysk8zer0/11ty-netlify 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/package.json +81 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
<!-- markdownlint-disable -->
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [v1.0.0] - 2023-15-20
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Assets from `netlify-js-app`
|
|
13
|
+
- All npm packages + 11ty
|
|
14
|
+
<!-- markdownlint-restore -->
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Chris Zuber
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@shgysk8zer0/11ty-netlify",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"engines": {
|
|
5
|
+
"node": ">=18.13.0"
|
|
6
|
+
},
|
|
7
|
+
"private": false,
|
|
8
|
+
"type": "module",
|
|
9
|
+
"description": "A collection of common npm packages for Eleventy sites on Netlify",
|
|
10
|
+
"config": {
|
|
11
|
+
"icons": "./_data/icons.csv",
|
|
12
|
+
"dir": {
|
|
13
|
+
"css": "css/",
|
|
14
|
+
"js": "js/",
|
|
15
|
+
"img": "img/",
|
|
16
|
+
"html": "./"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"test": "npm run lint && npm run build",
|
|
21
|
+
"preversion": "npm test",
|
|
22
|
+
"create:lock": "npm i --package-lock-only",
|
|
23
|
+
"version:bump": "npm run version:bump:patch",
|
|
24
|
+
"version:bump:patch": "npm version --no-git-tag-version patch",
|
|
25
|
+
"version:bump:minor": "npm version --no-git-tag-version minor",
|
|
26
|
+
"version:bump:major": "npm version --no-git-tag-version major",
|
|
27
|
+
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
|
|
28
|
+
"lint:js": "if [ -f .eslintrc.json ]; then eslint .; fi",
|
|
29
|
+
"lint:css": "if [ -f .stylelintrc.json ]; then stylelint './**.css'; fi",
|
|
30
|
+
"lint:html": "if [ -f .htmlhintrc ]; then htmlhint ${npm_package_config_dir_html}; fi",
|
|
31
|
+
"fix:css": "stylelint './**.css' --fix",
|
|
32
|
+
"fix:js": "eslint. --fix",
|
|
33
|
+
"build": "npm run build:icons && npm run build:css && npm run build:js",
|
|
34
|
+
"build:css": "if [ -f 'postcss.config.js' ]; then postcss ${npm_package_config_dir_css}index.css -o ${npm_package_config_dir_css}index.min.css; fi",
|
|
35
|
+
"build:js": "if [ -f 'rollup.config.js' ]; then rollup --config; fi",
|
|
36
|
+
"build:icons": "if [ -f ${npm_package_config_icons} ]; then $(svg-sprite-generate -c ${npm_package_config_icons} -o 'img/icons.svg'); fi"
|
|
37
|
+
},
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/shgysk8zer0/11ty-netlify.git"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"11ty",
|
|
44
|
+
"eleventy",
|
|
45
|
+
"netlify"
|
|
46
|
+
],
|
|
47
|
+
"author": "Chris Zuber <admin@kernvalley.us>",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/shgysk8zer0/11ty-netlify/issues"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://github.com/shgysk8zer0/11ty-netlify#readme",
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@11ty/eleventy": "^2.0.1",
|
|
55
|
+
"@rollup/plugin-terser": "^0.4.1",
|
|
56
|
+
"@shgysk8zer0/rollup-import": "^1.0.0",
|
|
57
|
+
"cssnano": "^6.0.0",
|
|
58
|
+
"cssnano-preset-default": "^6.0.0",
|
|
59
|
+
"eslint": "^8.0.1",
|
|
60
|
+
"eslint-plugin-async-await": "0.0.0",
|
|
61
|
+
"htmlhint": "^1.1.4",
|
|
62
|
+
"js-yaml": "^4.1.0",
|
|
63
|
+
"netlify-cli": "^15.0.0",
|
|
64
|
+
"postcss": "^8.4.7",
|
|
65
|
+
"postcss-cli": "^10.0.0",
|
|
66
|
+
"postcss-discard-comments": "^6.0.0",
|
|
67
|
+
"postcss-import": "^15.0.0",
|
|
68
|
+
"postcss-import-url": "^7.0.0",
|
|
69
|
+
"postcss-media-minmax": "^5.0.0",
|
|
70
|
+
"postcss-nesting": "^11.2.2",
|
|
71
|
+
"postcss-preset-env": "^8.0.0",
|
|
72
|
+
"postcss-url": "^10.1.3",
|
|
73
|
+
"rollup": "^3.2.2",
|
|
74
|
+
"rollup-plugin-url-resolve": "^0.2.0",
|
|
75
|
+
"stylelint": "^15.0.0",
|
|
76
|
+
"stylelint-config-recommended": "^12.0.0",
|
|
77
|
+
"stylelint-config-standard": "^33.0.0",
|
|
78
|
+
"svg-sprite-generator": "0.0.7",
|
|
79
|
+
"svgo": "^3.0.0"
|
|
80
|
+
}
|
|
81
|
+
}
|