Skip to content

Commit

Permalink
Merge pull request #323 from swiiny/chore/deactivate-dependabot-and-v…
Browse files Browse the repository at this point in the history
…ercel-analytics

Chore/update dependabot config and vercel analytics
  • Loading branch information
swiiny authored Oct 9, 2023
2 parents 06782d4 + e3586b2 commit ada0f20
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 14 deletions.
40 changes: 40 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Pull Request Template

## Description

Please include a clear and concise description of what this pull request accomplishes.

## Type of Change

- [ ] Bug Fix
- [ ] New Feature
- [ ] Breaking Change
- [ ] Refactor
- [ ] Documentation
- [ ] Other (Please describe)

## Steps to Test

Please list the steps that should be taken to test the changes introduced in this PR.

1.
2.
3.

## Expected Behavior

Describe the expected outcome after the changes have been applied.

## Additional Information

Please provide any additional information or context about this pull request here.

## Checklist

- [ ] I have commented my code, especially in areas that may be hard to understand for others.
- [ ] My changes generate no new warnings.
- [ ] I have added tests that demonstrate my changes are effective or that my feature works.

## Screenshots (If Applicable)

Drop in any relevant screenshots to help visualize your changes.
17 changes: 12 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'npm'
Expand All @@ -13,6 +8,9 @@ updates:
labels:
- 'npm dependencies'
- 'base'
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']

- package-ecosystem: 'npm'
directory: './packages/mui'
Expand All @@ -22,6 +20,9 @@ updates:
labels:
- 'npm dependencies'
- 'mui'
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']

- package-ecosystem: 'npm'
directory: './packages/styled-components'
Expand All @@ -31,6 +32,9 @@ updates:
labels:
- 'npm dependencies'
- 'styled-components'
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']

- package-ecosystem: 'npm'
directory: './packages/tailwind'
Expand All @@ -40,3 +44,6 @@ updates:
labels:
- 'npm dependencies'
- 'tailwind'
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp",
"version": "1.5.1",
"version": "1.5.2",
"private": false,
"type": "module",
"scripts": {
Expand Down
18 changes: 16 additions & 2 deletions packages/styled-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions packages/styled-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-styled-components",
"version": "1.2.1",
"version": "1.2.2",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -10,17 +10,18 @@
},
"dependencies": {
"@types/styled-components": "^5.1.28",
"@vercel/analytics": "^1.1.0",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/frame": "^2.0.2",
"@web3-onboard/injected-wallets": "^2.10.7",
"@web3-onboard/walletconnect": "^2.4.7",
"ethers": "^6.7.1",
"next": "13.5.3",
"next-transpile-modules": "^10.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"styled-components": "^6.0.8",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/frame": "^2.0.2",
"@web3-onboard/injected-wallets": "^2.10.7",
"@web3-onboard/walletconnect": "^2.4.7"
"styled-components": "^6.0.8"
},
"devDependencies": {
"@types/node": "20.8.1",
Expand Down
2 changes: 2 additions & 0 deletions packages/styled-components/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Navbar from '@components/default/Navbar';
import ResponsiveProvider from '@contexts/ResponsiveContext';
import Web3Provider from '@contexts/Web3Context';
import { Analytics } from '@vercel/analytics/react';
import type { AppProps } from 'next/app';
import Head from 'next/head';
import { ThemeProvider } from 'styled-components';
Expand Down Expand Up @@ -33,6 +34,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
<GlobalStyle />
<Navbar />
<Component {...pageProps} />
<Analytics />
</ThemeProvider>
</Web3Provider>
</ResponsiveProvider>
Expand Down

1 comment on commit ada0f20

@vercel
Copy link

@vercel vercel bot commented on ada0f20 Oct 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

create-nextjs-dapp – ./

create-nextjs-dapp-git-main-swiiny12.vercel.app
create-nextjs-dapp-swiiny12.vercel.app
create-nextjs-d.app

Please sign in to comment.