Skip to content

Commit fac309d

Browse files
Merge remote-tracking branch 'origin/develop' into feature/WRP-1050
# Conflicts: # CHANGELOG.md
2 parents 47aa942 + 0fe38aa commit fac309d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dist: focal
22
language: node_js
33
node_js:
44
- lts/*
5-
#- node
5+
- node
66
sudo: false
77
install:
88
- npm config set prefer-offline false

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The following is a curated list of changes in the Enact docs-utils module, newes
55
## [unreleased]
66

77
- Changed to require node 18 or later.
8-
- Updated gatsby dependencies to match the latest version (gatsby version 5.8.0).
8+
- Updated `gatsby` version to ^5.8.0.
99

1010
## [4.6.0] - 2023-05-23
1111

src/pages/docs/tutorials/setup/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Enact provides a handy command-line tool (the [Enact CLI](https://www.npmjs.com/
77

88
## Prerequisites
99

10-
Before the Enact framework can function on your computer, it is necessary to install some software. The most important piece is the [Node JavaScript runtime](https://nodejs.org) version 10.10 or newer (you can check to see what version of Node is installed by typing `node --version` into your command prompt or terminal window). If needed, follow the instructions on the site to install it.
10+
Before the Enact framework can function on your computer, it is necessary to install some software. The most important piece is the [Node JavaScript runtime](https://nodejs.org) version 18 or newer (you can check to see what version of Node is installed by typing `node --version` into your command prompt or terminal window). If needed, follow the instructions on the site to install it.
1111

1212
## Installing Enact CLI
1313

@@ -17,7 +17,7 @@ The Enact CLI provides a set of commands to ease creation, testing, maintenance,
1717
npm install -g @enact/cli
1818
```
1919

20-
Once installed, you can run `enact` from anywhere to run a command.
20+
Once installed, run `enact -v` to see the Enact CLI version. You can run `enact` from anywhere to run a command.
2121

2222
> We'll cover some of the available commands below but the [package README](https://github.com/enactjs/cli/blob/master/README.md) contains further detail.
2323

src/templates/markdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ export const pageQuery = graphql`
7575
}
7676
}
7777
allMarkdownRemark(
78-
filter:{
79-
fields:{
78+
filter: {
79+
fields: {
8080
slug: {regex: $parentRegex}
8181
}
8282
},

0 commit comments

Comments
 (0)