This is my portfolio. You can check it on the website https://david200197.github.io/david-portafolio/#BANNER_MARK
-
Format:
npm run format
- Runs Prettier to format the code within the
src
directory.
- Runs Prettier to format the code within the
-
Lint:
npm run lint
- Executes ESLint to analyze and ensure code quality in
.ts
and.tsx
files within thesrc
folder.
- Executes ESLint to analyze and ensure code quality in
-
Develop:
npm run dev
- Starts the development server using Vite for an efficient development process.
-
Build:
npm run build
- Performs TypeScript checks without emitting files and builds the application using Vite.
-
Analyze:
npm run analyze
- Analyzes the build output by setting the
ANALYZE
environment variable totrue
and executing the build script.
- Analyzes the build output by setting the
-
Serve:
npm run serve
- Serves the built application using Vite's preview feature.
-
Pre-deploy:
npm run predeploy
- Runs the build and CV update process before deployment.
-
Deploy:
npm run deploy
- Deploys the
dist
directory to GitHub Pages usinggh-pages
.
- Deploys the
-
Only deploy:
npm run only-deploy
- Directly deploys the
dist
directory to GitHub Pages without any pre-processing.
- Directly deploys the
-
Package Only Install:
npm run package-only-install
- Installs dependencies and generates a
package-lock.json
file without modifyingnode_modules
.
- Installs dependencies and generates a
-
Update CV:
npm run update-cv
- Updates the CV using a TypeScript script located in
scripts/update-cv/script.ts
.
- Updates the CV using a TypeScript script located in