helix-twcss 0.0.14 → 0.0.15-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/bin/tailwindcss-language-server +443 -450
- package/package.json +5 -4
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "helix-twcss",
|
3
3
|
"description": "Tailwind CSS Language Server - Temp LSP for Helix Only",
|
4
4
|
"license": "MIT",
|
5
|
-
"version": "0.0.
|
5
|
+
"version": "0.0.15-alpha.1",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
8
8
|
"url": "git+https://github.com/tailwindlabs/tailwindcss-intellisense.git",
|
@@ -13,12 +13,14 @@
|
|
13
13
|
},
|
14
14
|
"homepage": "https://github.com/tailwindlabs/tailwindcss-intellisense/tree/HEAD/packages/tailwindcss-language-server#readme",
|
15
15
|
"scripts": {
|
16
|
-
"build": "npm run clean && npm run _esbuild && npm run hashbang",
|
16
|
+
"build": "npm run clean && npm run _esbuild && npm run hashbang && chmod +x ./bin/tailwindcss-language-server && npm run code2",
|
17
17
|
"_esbuild": "node ../../esbuild.js src/server.ts --outfile=bin/tailwindcss-language-server --external=pnpapi --external=lightningcss --external=@tailwindcss/oxide --minify",
|
18
18
|
"clean": "rimraf bin",
|
19
19
|
"hashbang": "node scripts/hashbang.mjs",
|
20
20
|
"create-notices-file": "node scripts/createNoticesFile.mjs",
|
21
|
-
"prepublishOnly": "npm run build"
|
21
|
+
"prepublishOnly": "npm run build",
|
22
|
+
"code": "cp -r ./bin/tailwindcss-language-server /home/uros/.vscode/extensions/bradlc.vscode-tailwindcss-0.9.11/dist/tailwindServer.js",
|
23
|
+
"code2": "cp -r ./bin/* /home/uros/.nvm/versions/node/v18.16.0/lib/node_modules/helix-twcss/bin"
|
22
24
|
},
|
23
25
|
"bin": {
|
24
26
|
"hx-tw": "./bin/tailwindcss-language-server"
|
@@ -51,7 +53,6 @@
|
|
51
53
|
"fast-glob": "3.2.4",
|
52
54
|
"find-up": "5.0.0",
|
53
55
|
"is-builtin-module": "3.2.1",
|
54
|
-
"jest": "25.5.4",
|
55
56
|
"klona": "2.0.4",
|
56
57
|
"license-checker": "25.0.1",
|
57
58
|
"minimatch": "5.1.4",
|