Skip to content

Commit

Permalink
Added script for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Gionata committed Jul 30, 2023
1 parent 948d257 commit a95a1cf
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "posky-cloud",
"version": "0.1.0",
"private": true,
"homepage": "https://jhoscy.github.io/poskycloud",
"homepage": "https://Jhoscy.github.io/poskycloud",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "next build && next export && gh-pages -d out"
"deploy": "next build && next export && touch out/.nojekyll && gh-pages -d out"
},
"dependencies": {
"@types/node": "20.4.2",
Expand Down
1 change: 0 additions & 1 deletion public/CNAME

This file was deleted.

22 changes: 18 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -20,9 +24,19 @@
}
],
"paths": {
"@/*": ["./*"]
"@/*": [
"./*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"build/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit a95a1cf

Please sign in to comment.