Skip to content

Commit

Permalink
Merge pull request jondot#420 from kaplanan/docs/fix-ssl-and-align-links
Browse files Browse the repository at this point in the history
docs: fix unsecure links and align format
  • Loading branch information
jondot authored Mar 15, 2023
2 parents 47640e1 + 49c602a commit da62ce8
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

## Quick Start

Hygen can be used to supercharge your workflow with [Redux](http://www.hygen.io/docs/redux), [React Native](http://www.hygen.io/docs/react-native), [Express](http://www.hygen.io/docs/express) and more, by allowing you avoid manual work and generate, add, inject and perform custom operations on your codebase.
Hygen can be used to supercharge your workflow with [Redux](https://hygen.io/docs/redux), [React Native](https://hygen.io/docs/react-native), [Express](https://hygen.io/docs/express) and more, by allowing you avoid manual work and generate, add, inject and perform custom operations on your codebase.

If you're on macOS and have Homebrew:

Expand Down Expand Up @@ -136,13 +136,13 @@ $ hygen init repo antfu/vitesse

## What's Next?

Go to the [documentation](http://www.hygen.io/docs/quick-start) to get to know the rest of Hygen and generators.
Go to the [documentation](https://hygen.io/docs/quick-start) to get to know the rest of Hygen and generators.

If you're in a hurry:

* To learn how to edit generator templates, [look here](http://www.hygen.io/docs/templates)
* To see how to use generators [look here](http://www.hygen.io/docs/generators)
* Take a look at the [ecosystem](http://www.hygen.io/docs/packages) and tooling built around Hygen.
* To learn how to edit generator templates, [look here](https://hygen.io/docs/templates)
* To see how to use generators [look here](https://hygen.io/docs/generators)
* Take a look at the [ecosystem](https://hygen.io/docs/packages) and tooling built around Hygen.

## A Different Kind of a Generator

Expand Down
2 changes: 1 addition & 1 deletion dist/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Options:
1. 'hygen init self' to initialize your project, and
2. 'hygen generator new --name ${generator}' to build the generator you wanted.
Check out the quickstart for more: http://www.hygen.io/docs/quick-start
Check out the quickstart for more: https://hygen.io/docs/quick-start
`);
}
// lazy loading these dependencies gives a better feel once
Expand Down
2 changes: 1 addition & 1 deletion dist/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const printHelp = (templates, logger) => {
$ hygen my-generator
See http://hygen.io for more.
See https://hygen.io for more.
`);
return;
Expand Down
2 changes: 1 addition & 1 deletion lib/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Options:
1. 'hygen init self' to initialize your project, and
2. 'hygen generator new --name ${generator}' to build the generator you wanted.
Check out the quickstart for more: http://www.hygen.io/docs/quick-start
Check out the quickstart for more: https://hygen.io/docs/quick-start
`);
} // lazy loading these dependencies gives a better feel once
// a user is exploring hygen (not specifying what to execute)
Expand Down
2 changes: 1 addition & 1 deletion lib/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const printHelp = (templates, logger) => {
$ hygen my-generator
See http://hygen.io for more.
See https://hygen.io for more.
`);
return;
Expand Down
2 changes: 1 addition & 1 deletion scripts/standalone.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ SHA = "${sha}"
class Hygen < Formula
desc "The scalable code generator that saves you time."
homepage "http://www.hygen.io"
homepage "https://hygen.io"
url "https://github.com/jondot/hygen/releases/download/v#{VER}/hygen.macos.v#{VER}.tar.gz"
version VER
sha256 SHA
Expand Down
2 changes: 1 addition & 1 deletion src/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Options:
1. 'hygen init self' to initialize your project, and
2. 'hygen generator new --name ${generator}' to build the generator you wanted.
Check out the quickstart for more: http://www.hygen.io/docs/quick-start
Check out the quickstart for more: https://hygen.io/docs/quick-start
`)
}

Expand Down
2 changes: 1 addition & 1 deletion src/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const printHelp = (templates: string, logger: Logger) => {
$ hygen my-generator
See http://hygen.io for more.
See https://hygen.io for more.
`)
return
Expand Down

0 comments on commit da62ce8

Please sign in to comment.