Skip to content

Commit

Permalink
feat: can log out to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Mar 27, 2021
1 parent f7ef899 commit dde7cd7
Show file tree
Hide file tree
Showing 8 changed files with 4,858 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
extends: ['alloy', 'alloy/typescript'],
env: {
jest: true,
},
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,6 @@ dist

# TernJS port file
.tern-port

#
lib/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
printWidth: 100,
tabWidth: 2,
semi: false,
singleQuote: true,
trailingComma: 'es5',
}
52 changes: 52 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"name": "vite-plugin-fork-ts-checker",
"version": "0.0.1",
"description": "Async TS checker",
"main": "lib/main.js",
"peerDependencies": {
"typescript": "3.x || 4.x"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-alloy": "^3.10.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2",
"vite": "^2.1.3"
},
"scripts": {
"lint": "eslint \"**/*.ts\"",
"test": "jest",
"dev": "tsc --watch",
"build": "tsc",
"prepublishOnly": "rimraf ./lib && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fi3ework/vite-plugin-fork-ts-checker.git"
},
"keywords": [
"vite",
"vite-plugin",
"typescript"
],
"author": "fi3ework",
"license": "MIT",
"bugs": {
"url": "https://github.com/fi3ework/vite-plugin-ts-fork-esbuild/issues"
},
"homepage": "https://github.com/fi3ework/vite-plugin-fork-ts-checker#readme",
"dependencies": {
"commander": "^7.1.0",
"debug": "^4.3.1",
"esbuild": "^0.8.52",
"log-update": "^4.0.0"
}
}
Loading

0 comments on commit dde7cd7

Please sign in to comment.