-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87a9fe2
commit a37f5a5
Showing
7 changed files
with
4,995 additions
and
1,517 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,5 +1 @@ | ||
*.css linguist-language=Typescript | ||
*.vue linguist-language=Typescript | ||
*.js linguist-language=Typescript | ||
*.html linguist-language=Typescript | ||
*.svelte linguist-language=Typescript | ||
* linguist-language=Typescript |
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 |
---|---|---|
|
@@ -103,3 +103,5 @@ dist | |
|
||
# TernJS port file | ||
.tern-port | ||
|
||
config.*.timestamp* |
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 @@ | ||
*.md | ||
dist | ||
.vscode | ||
.DS_Store | ||
playgrounds | ||
node_modules | ||
pnpm-lock.yaml | ||
src/transform.js | ||
config.*.timestamp* |
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
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,6 +1,7 @@ | ||
{ | ||
"name": "vite-plugin-remove-console", | ||
"version": "2.1.1", | ||
"packageManager": "[email protected]", | ||
"description": "A vite plugin that remove the types of console in the production environment", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
|
@@ -19,7 +20,7 @@ | |
"scripts": { | ||
"build": "tsup", | ||
"dev": "tsup --watch", | ||
"lint": "prettier --write \"src/index.ts\"", | ||
"format": "prettier --check --write .", | ||
"pub": "pub" | ||
}, | ||
"repository": { | ||
|
@@ -42,10 +43,10 @@ | |
"homepage": "https://github.com/xiaoxian521/vite-plugin-remove-console#readme", | ||
"devDependencies": { | ||
"@pureadmin/release": "^1.0.0", | ||
"@types/node": "^18.16.0", | ||
"prettier": "^2.8.8", | ||
"@types/node": "^20.10.3", | ||
"prettier": "^3.1.0", | ||
"tsup": "^6.7.0", | ||
"typescript": "^5.0.4", | ||
"vite": "^4.3.2" | ||
"typescript": "^5.3.2", | ||
"vite": "^5.0.4" | ||
} | ||
} |
Oops, something went wrong.