@eclipse-glsp/cli 2.8.0-next.0 → 2.8.0-next.11
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 +39 -4
- package/bin/glsp.js +31 -0
- package/dist/cli.js +12247 -2175
- package/dist/cli.js.map +3 -3
- package/package.json +29 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/cli",
|
|
3
|
-
"version": "2.8.0-next.
|
|
3
|
+
"version": "2.8.0-next.11",
|
|
4
4
|
"description": "CLI Tooling & scripts for GLSP components",
|
|
5
5
|
"homepage": "https://www.eclipse.org/glsp/",
|
|
6
6
|
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
|
|
@@ -20,40 +20,42 @@
|
|
|
20
20
|
}
|
|
21
21
|
],
|
|
22
22
|
"bin": {
|
|
23
|
-
"glsp": "
|
|
23
|
+
"glsp": "bin/glsp.js"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
+
"bin",
|
|
26
27
|
"dist"
|
|
27
28
|
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "yarn check-types && yarn bundle",
|
|
30
|
-
"build:prod": "yarn check-types && yarn bundle --production",
|
|
31
|
-
"bundle": "yarn clean:dist && node esbuild.js",
|
|
32
|
-
"check-types": "tsc",
|
|
33
|
-
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
34
|
-
"clean:dist": "rimraf dist",
|
|
35
|
-
"lint": "eslint --ext .ts,.tsx ./src",
|
|
36
|
-
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
|
|
37
|
-
"start": "node dist/cli.js",
|
|
38
|
-
"test": "mocha --config .mocharc.json",
|
|
39
|
-
"test:all": "yarn test && yarn test:e2e",
|
|
40
|
-
"test:ci": "yarn test --reporter mocha-ctrf-json-reporter",
|
|
41
|
-
"test:coverage": "nyc yarn test",
|
|
42
|
-
"test:e2e": "yarn build && mocha --config .mocharc.e2e.json",
|
|
43
|
-
"watch": "node esbuild.js --watch",
|
|
44
|
-
"watch:tsc": "tsc --watch"
|
|
45
|
-
},
|
|
46
29
|
"devDependencies": {
|
|
47
|
-
"@eclipse-glsp/config": "2.8.0-next.0+f26bdf4",
|
|
48
30
|
"@types/semver": "^7.7.1",
|
|
49
31
|
"commander": "^14.0.0",
|
|
50
|
-
"esbuild": "~0.
|
|
51
|
-
"globby": "^
|
|
52
|
-
"
|
|
53
|
-
"
|
|
32
|
+
"esbuild": "~0.28.1",
|
|
33
|
+
"globby": "^16.2.0",
|
|
34
|
+
"minimatch": "^10.2.5",
|
|
35
|
+
"open": "^11.0.0",
|
|
36
|
+
"semver": "^7.7.2",
|
|
37
|
+
"yaml": "^2.8.0",
|
|
38
|
+
"@eclipse-glsp/config": "2.8.0-next.11"
|
|
54
39
|
},
|
|
55
40
|
"publishConfig": {
|
|
56
41
|
"access": "public"
|
|
57
42
|
},
|
|
58
|
-
"
|
|
59
|
-
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "pnpm compile && pnpm bundle",
|
|
45
|
+
"build:prod": "pnpm compile && pnpm bundle --production",
|
|
46
|
+
"bundle": "pnpm clean:dist && node esbuild.js",
|
|
47
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
48
|
+
"clean:dist": "rimraf dist",
|
|
49
|
+
"compile": "tsc",
|
|
50
|
+
"lint": "eslint --ext .ts,.tsx ./src",
|
|
51
|
+
"lint:ci": "pnpm lint -o eslint.xml -f checkstyle",
|
|
52
|
+
"start": "node dist/cli.js",
|
|
53
|
+
"test": "mocha --config .mocharc.json",
|
|
54
|
+
"test:all": "pnpm test && pnpm test:e2e",
|
|
55
|
+
"test:ci": "pnpm test --reporter mocha-ctrf-json-reporter",
|
|
56
|
+
"test:coverage": "nyc pnpm test",
|
|
57
|
+
"test:e2e": "pnpm build && mocha --config .mocharc.e2e.json",
|
|
58
|
+
"watch": "node esbuild.js --watch",
|
|
59
|
+
"watch:tsc": "tsc --watch"
|
|
60
|
+
}
|
|
61
|
+
}
|