@actions/languageserver 0.3.24 → 0.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +173 -0
- package/bin/actions-languageserver +2 -0
- package/dist/cli.bundle.cjs +30512 -0
- package/package.json +14 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actions/languageserver",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.26",
|
|
4
4
|
"description": "Language server for GitHub Actions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"url": "https://github.com/actions/languageservices"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build": "tsc --build tsconfig.build.json",
|
|
34
|
+
"build": "tsc --build tsconfig.build.json && npm run build:cli",
|
|
35
|
+
"build:cli": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/cli.bundle.cjs",
|
|
35
36
|
"clean": "rimraf dist",
|
|
36
37
|
"format": "prettier --write '**/*.ts'",
|
|
37
38
|
"format-check": "prettier --check '**/*.ts'",
|
|
@@ -40,11 +41,15 @@
|
|
|
40
41
|
"prepublishOnly": "npm run build && npm run test",
|
|
41
42
|
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
|
|
42
43
|
"test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
|
|
43
|
-
"watch": "tsc --build tsconfig.build.json --watch"
|
|
44
|
+
"watch": "tsc --build tsconfig.build.json --watch",
|
|
45
|
+
"watch:cli": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/cli.bundle.cjs --watch"
|
|
46
|
+
},
|
|
47
|
+
"bin": {
|
|
48
|
+
"actions-languageserver": "./bin/actions-languageserver"
|
|
44
49
|
},
|
|
45
50
|
"dependencies": {
|
|
46
|
-
"@actions/languageservice": "^0.3.
|
|
47
|
-
"@actions/workflow-parser": "^0.3.
|
|
51
|
+
"@actions/languageservice": "^0.3.26",
|
|
52
|
+
"@actions/workflow-parser": "^0.3.26",
|
|
48
53
|
"@octokit/rest": "^21.1.1",
|
|
49
54
|
"@octokit/types": "^9.0.0",
|
|
50
55
|
"vscode-languageserver": "^8.0.2",
|
|
@@ -55,12 +60,14 @@
|
|
|
55
60
|
"node": ">= 18"
|
|
56
61
|
},
|
|
57
62
|
"files": [
|
|
58
|
-
"dist/**/*"
|
|
63
|
+
"dist/**/*",
|
|
64
|
+
"bin/**/*"
|
|
59
65
|
],
|
|
60
66
|
"devDependencies": {
|
|
61
67
|
"@types/jest": "^29.0.3",
|
|
62
68
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
63
69
|
"@typescript-eslint/parser": "^5.56.0",
|
|
70
|
+
"esbuild": "^0.27.1",
|
|
64
71
|
"eslint": "^8.36.0",
|
|
65
72
|
"eslint-config-prettier": "^8.8.0",
|
|
66
73
|
"eslint-plugin-prettier": "^4.2.1",
|
|
@@ -71,5 +78,5 @@
|
|
|
71
78
|
"ts-jest": "^29.0.3",
|
|
72
79
|
"typescript": "^4.8.4"
|
|
73
80
|
},
|
|
74
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "c0062e5287fdb80b0856bc209e8dad064564bc70"
|
|
75
82
|
}
|