-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup code a bit and fix some type errors (#922)
* Update prettier version * Add Prettier ignore file * Optimize code * Cleanup imports * Move file * Run Prettier on entire codebase * Cleanup imports * Fix some type errors * Replace minimatch with picomatch * Simplify * Refactor * Fix typo This was assigning JS files to a CSS file list. This didn’t have any adverse affects aside from reading more file content to memory than necessary * Cleanup * Update to latest alpha in fixtures * Cleanup code
- Loading branch information
1 parent
8285ebc
commit 948d520
Showing
93 changed files
with
883 additions
and
2,983 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
packages/*/dist | ||
packages/*/bin |
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,37 +1,37 @@ | ||
{ | ||
"version": "0.2.0", | ||
// List of configurations. Add new configurations or edit existing ones. | ||
"configurations": [ | ||
{ | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"name": "Launch Client", | ||
"runtimeExecutable": "${execPath}", | ||
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-tailwindcss"], | ||
"stopOnEntry": false, | ||
"sourceMaps": true, | ||
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"] | ||
// "preLaunchTask": "npm: dev" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach to Server 6011", | ||
"address": "localhost", | ||
"protocol": "inspector", | ||
"port": 6011, | ||
"sourceMaps": true, | ||
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach to Server 6012", | ||
"address": "localhost", | ||
"protocol": "inspector", | ||
"port": 6012, | ||
"sourceMaps": true, | ||
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"] | ||
} | ||
] | ||
} | ||
{ | ||
"version": "0.2.0", | ||
// List of configurations. Add new configurations or edit existing ones. | ||
"configurations": [ | ||
{ | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"name": "Launch Client", | ||
"runtimeExecutable": "${execPath}", | ||
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-tailwindcss"], | ||
"stopOnEntry": false, | ||
"sourceMaps": true, | ||
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"] | ||
// "preLaunchTask": "npm: dev" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach to Server 6011", | ||
"address": "localhost", | ||
"protocol": "inspector", | ||
"port": 6011, | ||
"sourceMaps": true, | ||
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach to Server 6012", | ||
"address": "localhost", | ||
"protocol": "inspector", | ||
"port": 6012, | ||
"sourceMaps": true, | ||
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"] | ||
} | ||
] | ||
} |
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,29 +1,29 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"group": "build", | ||
"presentation": { | ||
"panel": "dedicated", | ||
"reveal": "never" | ||
}, | ||
"problemMatcher": ["$tsc"] | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "dev", | ||
"isBackground": true, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"panel": "dedicated", | ||
"reveal": "never" | ||
}, | ||
"problemMatcher": ["$tsc-watch"] | ||
} | ||
] | ||
} | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"group": "build", | ||
"presentation": { | ||
"panel": "dedicated", | ||
"reveal": "never" | ||
}, | ||
"problemMatcher": ["$tsc"] | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "dev", | ||
"isBackground": true, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"panel": "dedicated", | ||
"reveal": "never" | ||
}, | ||
"problemMatcher": ["$tsc-watch"] | ||
} | ||
] | ||
} |
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
Oops, something went wrong.