Skip to content

Commit

Permalink
Merge pull request #11 from alandsilva26/chore/update-packages
Browse files Browse the repository at this point in the history
Chore/update packages
  • Loading branch information
alandsilva26 authored Dec 30, 2023
2 parents 599b11a + 9c598ba commit 3234fe1
Show file tree
Hide file tree
Showing 46 changed files with 14,142 additions and 29,771 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"root": true,
"ignorePatterns": ["!**/*"],
"plugins": ["@nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
}
],
"extends": ["plugin:@nx/react"]
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

package-lock.json
debug.log
.nx
5 changes: 4 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ public
other
node_modules
media
build
build
/dist
/coverage
/.nx/cache
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"nrwl.angular-console",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib"
}
40 changes: 0 additions & 40 deletions CONTRIBUTING.md

This file was deleted.

36 changes: 36 additions & 0 deletions public/index.html → index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />

<meta name="theme-color" content="#ffffff" />

<!-- Primary Meta Tags -->
<title>Alan Dsilva Portfolio</title>
<meta name="title" content="Alan Dsilva's Portfolio website" />
<meta
name="description"
content="My Personal Website. This website includes all my work info, open source projects I have worked on etc. This website is built in React.js"
/>
<meta name="keywords" content="alandsilva, alan, dsilva, alan dsilva" />
<meta
name="author"
content="Alan Dsilva &lt;[email protected]&gt;"
/>

<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/src/styles/main.scss" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>

<script
language="Javascript"
type="text/javascript"
src="./js/smooth-scroll.js"
></script>
</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
Expand Down
52 changes: 52 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"lint": {
"cache": true,
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
]
},
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^production"]
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/eslint.config.js"
],
"sharedGlobals": []
},
"generators": {
"@nx/react": {
"application": {
"style": "scss",
"linter": "eslint",
"bundler": "vite",
"babel": true
},
"component": {
"style": "scss"
},
"library": {
"style": "scss",
"linter": "eslint"
}
}
},
"defaultProject": "portfolio"
}
Loading

0 comments on commit 3234fe1

Please sign in to comment.