Skip to content

Commit ada0f20

Browse files
authored
Merge pull request #323 from swiiny/chore/deactivate-dependabot-and-vercel-analytics
Chore/update dependabot config and vercel analytics
2 parents 06782d4 + e3586b2 commit ada0f20

File tree

6 files changed

+78
-14
lines changed

6 files changed

+78
-14
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Pull Request Template
2+
3+
## Description
4+
5+
Please include a clear and concise description of what this pull request accomplishes.
6+
7+
## Type of Change
8+
9+
- [ ] Bug Fix
10+
- [ ] New Feature
11+
- [ ] Breaking Change
12+
- [ ] Refactor
13+
- [ ] Documentation
14+
- [ ] Other (Please describe)
15+
16+
## Steps to Test
17+
18+
Please list the steps that should be taken to test the changes introduced in this PR.
19+
20+
1.
21+
2.
22+
3.
23+
24+
## Expected Behavior
25+
26+
Describe the expected outcome after the changes have been applied.
27+
28+
## Additional Information
29+
30+
Please provide any additional information or context about this pull request here.
31+
32+
## Checklist
33+
34+
- [ ] I have commented my code, especially in areas that may be hard to understand for others.
35+
- [ ] My changes generate no new warnings.
36+
- [ ] I have added tests that demonstrate my changes are effective or that my feature works.
37+
38+
## Screenshots (If Applicable)
39+
40+
Drop in any relevant screenshots to help visualize your changes.

.github/dependabot.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
83
- package-ecosystem: 'npm'
@@ -13,6 +8,9 @@ updates:
138
labels:
149
- 'npm dependencies'
1510
- 'base'
11+
ignore:
12+
- dependency-name: '*'
13+
update-types: ['version-update:semver-patch']
1614

1715
- package-ecosystem: 'npm'
1816
directory: './packages/mui'
@@ -22,6 +20,9 @@ updates:
2220
labels:
2321
- 'npm dependencies'
2422
- 'mui'
23+
ignore:
24+
- dependency-name: '*'
25+
update-types: ['version-update:semver-patch']
2526

2627
- package-ecosystem: 'npm'
2728
directory: './packages/styled-components'
@@ -31,6 +32,9 @@ updates:
3132
labels:
3233
- 'npm dependencies'
3334
- 'styled-components'
35+
ignore:
36+
- dependency-name: '*'
37+
update-types: ['version-update:semver-patch']
3438

3539
- package-ecosystem: 'npm'
3640
directory: './packages/tailwind'
@@ -40,3 +44,6 @@ updates:
4044
labels:
4145
- 'npm dependencies'
4246
- 'tailwind'
47+
ignore:
48+
- dependency-name: '*'
49+
update-types: ['version-update:semver-patch']

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-nextjs-dapp",
3-
"version": "1.5.1",
3+
"version": "1.5.2",
44
"private": false,
55
"type": "module",
66
"scripts": {

packages/styled-components/package-lock.json

Lines changed: 16 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/styled-components/package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-nextjs-dapp-styled-components",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -10,17 +10,18 @@
1010
},
1111
"dependencies": {
1212
"@types/styled-components": "^5.1.28",
13+
"@vercel/analytics": "^1.1.0",
14+
"@web3-onboard/core": "^2.21.2",
15+
"@web3-onboard/frame": "^2.0.2",
16+
"@web3-onboard/injected-wallets": "^2.10.7",
17+
"@web3-onboard/walletconnect": "^2.4.7",
1318
"ethers": "^6.7.1",
1419
"next": "13.5.3",
1520
"next-transpile-modules": "^10.0.1",
1621
"react": "18.2.0",
1722
"react-dom": "18.2.0",
1823
"react-icons": "^4.11.0",
19-
"styled-components": "^6.0.8",
20-
"@web3-onboard/core": "^2.21.2",
21-
"@web3-onboard/frame": "^2.0.2",
22-
"@web3-onboard/injected-wallets": "^2.10.7",
23-
"@web3-onboard/walletconnect": "^2.4.7"
24+
"styled-components": "^6.0.8"
2425
},
2526
"devDependencies": {
2627
"@types/node": "20.8.1",

packages/styled-components/pages/_app.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import Navbar from '@components/default/Navbar';
22
import ResponsiveProvider from '@contexts/ResponsiveContext';
33
import Web3Provider from '@contexts/Web3Context';
4+
import { Analytics } from '@vercel/analytics/react';
45
import type { AppProps } from 'next/app';
56
import Head from 'next/head';
67
import { ThemeProvider } from 'styled-components';
@@ -33,6 +34,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
3334
<GlobalStyle />
3435
<Navbar />
3536
<Component {...pageProps} />
37+
<Analytics />
3638
</ThemeProvider>
3739
</Web3Provider>
3840
</ResponsiveProvider>

0 commit comments

Comments
 (0)