Create start of repository

This commit is contained in:
Julien Lengrand-Lambert
2021-01-31 16:22:04 +01:00
commit f7288a69d7
4 changed files with 71 additions and 0 deletions

42
.gitignore vendored Normal file
View File

@@ -0,0 +1,42 @@
## editors
/.idea
/.vscode
## system files
.DS_Store
## code coverage folders
coverage/
## npm
node_modules
npm-debug.log
yarn-error.log
## temp folders
/.tmp/
## we prefer yarn.lock
package-lock.json
## lock files in packages we do not need to save
packages/*/yarn.lock
## build output
dist
dist-types
stats.html
*.tsbuildinfo
## Rocket ignore files (need to be the full relative path to the folders)
docs/_merged_data/
docs/_merged_assets/
docs/_merged_includes/
_site
_site-dev
## Ignore Rocket Test Builds
_merged_data
_merged_assets
_merged_includes
__output
__output-dev

5
index.js Normal file
View File

@@ -0,0 +1,5 @@
module.exports = {
onPreBuild: () => {
console.log('Hello world from onPreBuild event!')
},
}

6
manifest.yml Normal file
View File

@@ -0,0 +1,6 @@
name: netlify-plugin-check-html-links
inputs:
- name: doc-folder
description: location of the documentation folder
default: "dist"
required: false

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "check-html-links-netlify-plugin",
"version": "1.0.0",
"description": "This action checks whether there are any dead links in the documentation of your repository. Based on check-html-links from Modern Web.",
"main": "index.js",
"scripts": {
},
"keywords": [
"netlify",
"netlify-plugin",
"check-html-links"
],
"author": "Modern Web",
"license": "ISC",
"dependencies": {
"check-html-links": "^0.1.2"
}
}