Skip to content

Commit c856e87

Browse files
committed
build: update on push branch for deployments
1 parent 213d96e commit c856e87

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"branches": ["master"],
2+
"branches": ["main"],
33
"verifyConditions": [],
44
"prepare": [
55
"@semantic-release/changelog",
File renamed without changes.

src/App/App.test.tsx renamed to src/components/App/App.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { render, screen } from '@testing-library/react';
2-
import App from './';
2+
import App from '.';
33

44
test('renders Header', () => {
55
render(<App />);
File renamed without changes.

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from 'react';
22
import { createRoot } from 'react-dom/client';
3-
import App from './App';
3+
import App from './components/App';
44

55
const rootElement = document.getElementById('root');
66
if (rootElement) {

src/routes/index.lazy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createLazyFileRoute } from '@tanstack/react-router';
2-
import App from '../App';
2+
import App from '../components/App';
33

44
export const Route = createLazyFileRoute('/')({
55
component: App,

0 commit comments

Comments
 (0)