Skip to content

Commit cb92b46

Browse files
committed
Merge branch 'main' into uarray-intro-2
2 parents f52bfea + cf3da05 commit cb92b46

File tree

471 files changed

+31321
-48669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

471 files changed

+31321
-48669
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: 'npm'
4+
target-branch: 'develop'
45
directory: '/'
56
schedule:
67
interval: 'monthly'
@@ -9,3 +10,22 @@ updates:
910
prefix-development: chore
1011
include: scope
1112
open-pull-requests-limit: 5
13+
groups:
14+
# All Nx updates must occur together. See:
15+
# https://nx.dev/recipes/tips-n-tricks/keep-nx-versions-in-sync
16+
nx:
17+
patterns:
18+
- "nx"
19+
- "@nrwl/*"
20+
- "@nx/*"
21+
update-types:
22+
- "patch"
23+
- "minor"
24+
ignore:
25+
# Do major Nx updates manually with `nx migrate`, not with Dependabot
26+
- dependency-name: "nx"
27+
update-types: ["version-update:semver-major"]
28+
- dependency-name: "@nrwl/*"
29+
update-types: ["version-update:semver-major"]
30+
- dependency-name: "@nx/*"
31+
update-types: ["version-update:semver-major"]

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Thank you for submitting a blog post! We want to make sure content produced for
1010

1111
## Non-text contents
1212

13+
- [ ] Blog post featured image is in PNG or JPEG format, **not** SVG.
1314
- [ ] All content is represented as text (for example, images need alt text and videos need captions or descriptive transcripts).
1415
- [ ] If there are emojis, there are not more than three in a row.
1516
- [ ] Don't use [flashing gifs or videos](https://www.w3.org/TR/UNDERSTANDING-WCAG20/seizure-does-not-violate.html).

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*.launch
1717
.settings/
1818
*.sublime-workspace
19+
.vscode/
1920

2021
# IDE - VSCode
2122
.vscode/*
@@ -44,3 +45,9 @@ Thumbs.db
4445
.eslintcache
4546
.env
4647
.history
48+
49+
#rss.xml file
50+
rss.xml
51+
52+
.next/
53+
.nx/

.lintstagedrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"*.{js,json,css,scss,md,ts,tsx,html,graphql}": [
33
"nx format:write --uncommitted",
4-
"nx affected:lint --base=develop --fix=true"
4+
"nx affected:lint --base=main --fix=true"
55
],
6-
".css": ["nx affected:stylelint --base=develop --fix=true"]
6+
".css": ["nx affected:stylelint --base=main --fix=true"]
77
}

.vscode/extensions.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)