-
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eslint --fix by @sxzz/eslint-config - add `node:` protocol - sort imports - ...
- Loading branch information
Showing
44 changed files
with
247 additions
and
298 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
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 |
---|---|---|
|
@@ -3,8 +3,8 @@ name: Fix | |
on: | ||
push: | ||
branches-ignore: | ||
- 'main' | ||
- 'dev' | ||
- main | ||
- dev | ||
|
||
jobs: | ||
format: | ||
|
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ dist | |
playground | ||
.idea | ||
.DS_Store | ||
.eslintcache |
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
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,23 +1,24 @@ | ||
{ | ||
"name": "tsup", | ||
"version": "0.0.0-semantic-release", | ||
"packageManager": "[email protected]", | ||
"description": "Bundle your TypeScript library with no config, powered by esbuild", | ||
"main": "dist/index.js", | ||
"bin": { | ||
"tsup": "dist/cli-default.js", | ||
"tsup-node": "dist/cli-node.js" | ||
"license": "MIT", | ||
"homepage": "https://tsup.egoist.dev/", | ||
"repository": { | ||
"url": "https://github.com/egoist/tsup.git" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"author": "EGOIST", | ||
"files": [ | ||
"/dist", | ||
"/assets", | ||
"/dist", | ||
"/schema.json" | ||
], | ||
"author": "EGOIST", | ||
"license": "MIT", | ||
"homepage": "https://tsup.egoist.dev/", | ||
"repository": { | ||
"url": "https://github.com/egoist/tsup.git" | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"bin": { | ||
"tsup": "dist/cli-default.js", | ||
"tsup-node": "dist/cli-node.js" | ||
}, | ||
"scripts": { | ||
"dev": "npm run build-fast -- --watch", | ||
|
@@ -28,6 +29,26 @@ | |
"test-only": "vitest run", | ||
"build-fast": "npm run build -- --no-dts" | ||
}, | ||
"peerDependencies": { | ||
"@microsoft/api-extractor": "^7.36.0", | ||
"@swc/core": "^1", | ||
"postcss": "^8.4.12", | ||
"typescript": ">=4.5.0" | ||
}, | ||
"peerDependenciesMeta": { | ||
"@microsoft/api-extractor": { | ||
"optional": true | ||
}, | ||
"@swc/core": { | ||
"optional": true | ||
}, | ||
"postcss": { | ||
"optional": true | ||
}, | ||
"typescript": { | ||
"optional": true | ||
} | ||
}, | ||
"dependencies": { | ||
"bundle-require": "^5.0.0", | ||
"cac": "^6.7.14", | ||
|
@@ -72,28 +93,7 @@ | |
"vitest": "2.0.3", | ||
"wait-for-expect": "3.0.2" | ||
}, | ||
"peerDependencies": { | ||
"@microsoft/api-extractor": "^7.36.0", | ||
"@swc/core": "^1", | ||
"postcss": "^8.4.12", | ||
"typescript": ">=4.5.0" | ||
}, | ||
"peerDependenciesMeta": { | ||
"typescript": { | ||
"optional": true | ||
}, | ||
"postcss": { | ||
"optional": true | ||
}, | ||
"@swc/core": { | ||
"optional": true | ||
}, | ||
"@microsoft/api-extractor": { | ||
"optional": true | ||
} | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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.