mirror of
https://github.com/jlengrand/check-html-links-netlify-plugin.git
synced 2026-03-10 00:01:17 +00:00
Create start of repository
This commit is contained in:
42
.gitignore
vendored
Normal file
42
.gitignore
vendored
Normal 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
5
index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
module.exports = {
|
||||
onPreBuild: () => {
|
||||
console.log('Hello world from onPreBuild event!')
|
||||
},
|
||||
}
|
||||
6
manifest.yml
Normal file
6
manifest.yml
Normal 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
18
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user