We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf0e13 commit c8d3d7aCopy full SHA for c8d3d7a
packages/tailwindcss-language-server/src/language/css.ts
@@ -0,0 +1,16 @@
1
+#!/usr/bin/env node
2
+import { createConnection, ProposedFeatures } from 'vscode-languageserver/node'
3
+import { interceptLogs } from '../util/logs'
4
+import { CssServer } from './cssServer'
5
+
6
+let connection = createConnection(ProposedFeatures.all)
7
8
+interceptLogs(console, connection)
9
10
+process.on('unhandledRejection', (e: any) => {
11
+ console.error('Unhandled exception', e)
12
+})
13
14
+let server = new CssServer(connection)
15
+server.setup()
16
+server.listen()
0 commit comments