Skip to content

Commit

Permalink
reorganize files
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespohalloran committed Nov 13, 2022
1 parent 4863315 commit ccc65eb
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/PUBLISH.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
registry-url: "https://registry.npmjs.org"
- run: yarn install
- run: yarn build
- run: cd packages/link-proofer && yarn publish
- run: cd packages/linkproofer && yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "link-proofer-mono",
"name": "linkproofer-mono",
"private": "true",
"version": "0.0.1",
"description": "Tool to check for broken links in a project",
Expand All @@ -9,8 +9,8 @@
"apps/*"
],
"scripts": {
"build": "cd packages/link-proofer && yarn build",
"dev": "cd packages/link-proofer && yarn dev"
"build": "cd packages/linkproofer && yarn build",
"dev": "cd packages/linkproofer && yarn dev"
},
"keywords": [],
"author": "",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ You can use one of the following packages to wait for your deployment to finish,
Usage: linkproofer [options]

Options:
-h, --help display help for command
-V, --version output the version number
-f, --files <files> Filepath pattern for files in which linkproofer should check for links
-v, --verbose <verbose> Log out all checked links (not just the failures)
-o, --outputDir <outputDir> Directory to put the compiled output files. (Default "dist"). This directory should be added to your .gitignore
-v, --verbose Log out all checked links (not just the failures)
-o, --outputDir <outputDir> Directory to put the compiled output files. (Default dist). This directory should be added to your .gitignore
-b, --baseURL <baseURL> baseURL to use for relative links.
-h, --help display help for command
```
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkproofer",
"version": "0.0.5",
"version": "0.1.0",
"description": "Tool to check for broken links in a project",
"source": "src/index.ts",
"files": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { checkFiles } from "./link-proofer";
import { checkFiles } from "./linkproofer";
import { Command } from "commander";

export async function init(args: any) {
Expand All @@ -7,7 +7,7 @@ export async function init(args: any) {
program
.name("linkproofer")
.description("CLI tool to audit links in your project")
.version("1.0.0")
.version("0.1.0")
.option(
"-f, --files <files>",
"Filepath pattern for files in which linkproofer should check for links"
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ You can use one of the following packages to wait for your deployment to finish,
Usage: linkproofer [options]

Options:
-h, --help display help for command
-V, --version output the version number
-f, --files <files> Filepath pattern for files in which linkproofer should check for links
-v, --verbose <verbose> Log out all checked links (not just the failures)
-o, --outputDir <outputDir> Directory to put the compiled output files. (Default "dist"). This directory should be added to your .gitignore
-v, --verbose Log out all checked links (not just the failures)
-o, --outputDir <outputDir> Directory to put the compiled output files. (Default dist). This directory should be added to your .gitignore
-b, --baseURL <baseURL> baseURL to use for relative links.
-h, --help display help for command
```

0 comments on commit ccc65eb

Please sign in to comment.