Skip to content

Commit b7e695b

Browse files
committed
Renaming .io to .dev
1 parent dab7577 commit b7e695b

16 files changed

Lines changed: 75 additions & 75 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Features:
2222
2323
## Getting Started
2424

25-
Our website has a complete [Getting Started](http://www.greenwoodjs.dev/guides/getting-started/) guide that will walk you through creating a Greenwood project from scratch.
25+
Our website has a complete [Getting Started](https://www.greenwoodjs.dev/guides/getting-started/) guide that will walk you through creating a Greenwood project from scratch.
2626

2727
You can follow along with, or clone and go, the [companion repo](https://github.com/ProjectEvergreen/greenwood-getting-started) or try it out live on [Stackblitz](https://stackblitz.com/github/projectevergreen/greenwood-getting-started).
2828

packages/cli/test/cases/build.config.prerender-html-web-components/build.config.prerender-html-web-components.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ describe("Build Greenwood With: ", function () {
8181
expect(img.length).to.equal(1);
8282
expect(img[0].getAttribute("alt")).to.equal("Greenwood logo");
8383
expect(img[0].getAttribute("src")).to.equal(
84-
"https://www.greenwoodjs.io/assets/greenwood-logo-og.png",
84+
"https://www.greenwoodjs.dev/assets/greenwood-logo-og.png",
8585
);
8686
});
8787

packages/cli/test/cases/build.config.prerender-html-web-components/expected.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<wcc-picture-frame title="Greenwood">
22
<div class="picture-frame">
3-
<img src="https://www.greenwoodjs.io/assets/greenwood-logo-og.png" alt="Greenwood logo">
3+
<img src="https://www.greenwoodjs.dev/assets/greenwood-logo-og.png" alt="Greenwood logo">
44
<br>
55
<span>Author: <span>Greenwood</span></span>
66
<wcc-caption>

packages/cli/test/cases/build.config.prerender-html-web-components/src/pages/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<body>
88
<wcc-picture-frame title="Greenwood">
9-
<img src="https://www.greenwoodjs.io/assets/greenwood-logo-og.png" alt="Greenwood logo" />
9+
<img src="https://www.greenwoodjs.dev/assets/greenwood-logo-og.png" alt="Greenwood logo" />
1010
<br />
1111
<span>Author: <span>Greenwood</span></span>
1212
</wcc-picture-frame>

packages/cli/test/cases/theme-pack/theme-pack.build.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Use Case
33
* A theme pack _author_ creating a theme pack and using Greenwood for development and testing
4-
* following the guide published on the Greenwood website. (https://www.greenwoodjs.io/guides/theme-packs/)
4+
* following the guide published on the Greenwood website. (https://www.greenwoodjs.dev/guides/theme-packs/)
55
*
66
* User Result
77
* Should correctly validate the develop and build / serve commands work correctly using tge expected layouts

packages/cli/test/cases/theme-pack/theme-pack.develop.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Use Case
33
* A theme pack _author_ creating a theme pack and using Greenwood for development and testing
4-
* following the guide published on the Greenwood website. (https://www.greenwoodjs.io/guides/theme-packs/)
4+
* following the guide published on the Greenwood website. (https://www.greenwoodjs.dev/guides/theme-packs/)
55
*
66
* User Result
77
* Should correctly validate the develop and build / serve commands work correctly using tge expected layouts

packages/plugin-graphql/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ customElements.define('x-component', SomeComponent);
153153

154154
### Collections
155155

156-
Based on [our Collections feature](http://www.greenwoodjs.dev/docs/content-as-data/collections/) for querying based on collections.
156+
Based on [our Collections feature](https://www.greenwoodjs.dev/docs/content-as-data/collections/) for querying based on collections.
157157

158158
```js
159159
import client from '@greenwood/plugin-graphql/src/core/client.js';
@@ -178,7 +178,7 @@ customElements.define('x-component', SomeComponent);
178178

179179
### Children
180180

181-
This will return a set of pages under a specific route and is akin to using [`getContentByRoute`](http://www.greenwoodjs.dev/docs/content-as-data/data-client/#content-by-route).
181+
This will return a set of pages under a specific route and is akin to using [`getContentByRoute`](https://www.greenwoodjs.dev/docs/content-as-data/data-client/#content-by-route).
182182

183183
```js
184184
import client from '@greenwood/plugin-graphql/src/core/client.js';

0 commit comments

Comments
 (0)