-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update .gitignore with more comprehensive exclusions
feat(.npmignore): create .npmignore to specify files to ignore when publishing perf(package.json): add --clean flag to build script for cleaner builds
- Loading branch information
Showing
4 changed files
with
2,999 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,26 @@ | ||
# Modules: | ||
node_modules | ||
# Idea IDE: | ||
**/.idea/ | ||
|
||
# Build: | ||
dist | ||
# Package lock (except for PNPM): | ||
**/yarn.lock | ||
**/package-lock.json | ||
**/bun.lockb | ||
|
||
# Lock files: | ||
package-lock.json | ||
yarn.lock | ||
pnpm-lock.yaml | ||
# Packages: | ||
**/node_modules | ||
|
||
# Environment variables and secrets files: | ||
**/.env* | ||
|
||
# ESLint Inspector: | ||
.eslint-config-inspector | ||
|
||
# Builds: | ||
**/build | ||
**/dist | ||
|
||
# TS: | ||
**/*.tsbuildinfo | ||
|
||
# MacOS | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Project: | ||
src | ||
|
||
# Configs: | ||
eslint.config.js | ||
tsconfig.json | ||
|
||
# GitHub: | ||
.github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.