Skip to content

Commit 970c6f4

Browse files
authored
gitignore ._DS_Store and add maximum node version (#450)
* ignore `.DS_Store` generated on macOS * add maximum version of node
1 parent 0514c54 commit 970c6f4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
# Vim
4343
*.swp
4444

45+
# macOS
46+
.DS_Store
47+
4548
####
4649
# Random
4750
####

frontend/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This project builds the frontend for the stash-box server. It can be used to bui
44

55
## Setup / Installing
66
Make sure your environment is up to date:
7-
- node >= `14.16.0`
7+
- node >= `14.16.0`, < `17.0.0`
88
- yarn >= `1.15.2`
99

1010
For installation instructions, please see the websites for [yarn](https://yarnpkg.com/lang/en/docs/install/) and [node.js](https://nodejs.org/en/download/).
@@ -16,14 +16,14 @@ yarn
1616
```
1717

1818
## GraphQL development
19-
If any queries/mutations or the schema on the server is updated, the Typescript types can be updated with:
19+
If any queries/mutations or the schema on the server is updated, the Typescript types can be updated with:
2020
```shell
2121
yarn generate
2222
```
2323

2424
## Running
2525

26-
### Local development server
26+
### Local development server
2727

2828
The API key can be set in the environment configuration. To do so, you will need to initialize the environment configuration:
2929

@@ -56,5 +56,5 @@ yarn format
5656
Build the release bundle:
5757

5858
```shell
59-
yarn build
59+
yarn build
6060
```

0 commit comments

Comments
 (0)