Skip to content

Commit

Permalink
Renames template to template-remix-vite. Re-adds the App home page th…
Browse files Browse the repository at this point in the history
…at was removed accidentally in a previous commit.
  • Loading branch information
jonathanprozzi committed Nov 14, 2024
1 parent 2943fd2 commit fc42b91
Show file tree
Hide file tree
Showing 141 changed files with 27 additions and 17 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions apps/template-remix-vite/app/routes/app+/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import PrivyLogoutButton from '@client/privy-logout-button'
import GetStarted from '@components/get-started'
import HomeBanner from '@components/home-banner'

export default function App() {
return (
<div className="w-full flex flex-col gap-12">
<HomeBanner />
<GetStarted />
<PrivyLogoutButton />
</div>
)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xintuition/template",
"version": "0.1.0",
"name": "@0xintuition/template-remix-vite",
"version": "0.1.1",
"description": "Auth Ready Remix Template",
"sideEffects": false,
"type": "module",
Expand All @@ -13,7 +13,7 @@
"repository": {
"type": "git",
"url": "https://github.com/0xIntuition/intuition-ts",
"directory": "apps/template"
"directory": "apps/template-remix-vite"
},
"dependencies": {
"@0xintuition/1ui": "workspace:^",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@0xintuition/template",
"name": "@0xintuition/template-remix-vite",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/template",
"sourceRoot": "apps/template-remix-vite",
"projectType": "application",
"tags": [],
"targets": {
Expand All @@ -21,20 +21,20 @@
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["apps/template/**/*.{ts,tsx,js,jsx}"]
"lintFilePatterns": ["apps/template-remix-vite/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nx/vite:test",
"options": {
"config": "apps/template/vitest.config.ts"
"config": "apps/template-remix-vite/vitest.config.ts"
}
},
"typecheck": {
"dependsOn": ["^build"],
"command": "tsc",
"options": {
"cwd": "apps/template"
"cwd": "apps/template-remix-vite"
}
}
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions apps/template/app/routes/app+/index.tsx

This file was deleted.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"portal:build": "nx build @0xintuition/portal",
"portal:lint": "nx lint @0xintuition/portal",
"portal:test": "nx test @0xintuition/portal --reporter=verbose",
"template:dev": "nx dev @0xintuition/template",
"template:start": "nx start @0xintuition/template",
"template:build": "nx build @0xintuition/template",
"template:lint": "nx lint @0xintuition/template",
"template:test": "nx test @0xintuition/template --reporter=verbose",
"template:typecheck": "nx typecheck @0xintuition/template",
"template-remix-vite:dev": "nx dev @0xintuition/template-remix-vite",
"template-remix-vite:start": "nx start @0xintuition/template-remix-vite",
"template-remix-vite:build": "nx build @0xintuition/template-remix-vite",
"template-remix-vite:lint": "nx lint @0xintuition/template-remix-vite",
"template-remix-vite:test": "nx test @0xintuition/template-remix-vite --reporter=verbose",
"template-remix-vite:typecheck": "nx typecheck @0xintuition/template-remix-vite",
"data-populator:dev": "nx dev @0xintuition/data-populator",
"data-populator:start": "nx start @0xintuition/data-populator",
"data-populator:build": "nx build @0xintuition/data-populator",
Expand Down

0 comments on commit fc42b91

Please sign in to comment.