@eclipse-glsp/graph 1.1.0-next.35b3b9d.33 → 1.1.0-next.5e2f6a5.37
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/graph",
|
|
3
|
-
"version": "1.1.0-next.
|
|
3
|
+
"version": "1.1.0-next.5e2f6a5.37+5e2f6a5",
|
|
4
4
|
"description": "The typescript implementation of the GLSP graphical model (GModel)",
|
|
5
5
|
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
|
|
6
6
|
"keywords": [
|
|
@@ -34,8 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"files": [
|
|
36
36
|
"lib",
|
|
37
|
-
"src"
|
|
38
|
-
"css"
|
|
37
|
+
"src"
|
|
39
38
|
],
|
|
40
39
|
"dependencies": {
|
|
41
40
|
"@eclipse-glsp/protocol": "next"
|
|
@@ -45,12 +44,13 @@
|
|
|
45
44
|
},
|
|
46
45
|
"scripts": {
|
|
47
46
|
"build": "tsc -b",
|
|
48
|
-
"clean": "rimraf lib tsconfig.tsbuildinfo ",
|
|
47
|
+
"clean": "rimraf lib tsconfig.tsbuildinfo coverage .nyc_output",
|
|
49
48
|
"lint": "eslint --ext .ts,.tsx ./src",
|
|
50
49
|
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
|
|
51
50
|
"prepare": "yarn clean && yarn build",
|
|
52
|
-
"test": "mocha --config ../../.mocharc
|
|
51
|
+
"test": "mocha --config ../../.mocharc \"./src/**/*.spec.?(ts|tsx)\"",
|
|
53
52
|
"test:ci": "export JUNIT_REPORT_PATH=./report.xml && yarn test --reporter mocha-jenkins-reporter",
|
|
53
|
+
"test:coverage": "nyc yarn test:ci",
|
|
54
54
|
"watch": "tsc -w"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
},
|
|
59
59
|
"main": "lib/index",
|
|
60
60
|
"types": "lib/index",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "5e2f6a50c30ac0a53617c01217db636db4ed1113"
|
|
62
62
|
}
|
|
@@ -13,6 +13,15 @@
|
|
|
13
13
|
*
|
|
14
14
|
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
15
|
********************************************************************************/
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
|
|
17
|
+
/* note: this bogus test file is required so that
|
|
18
|
+
we are able to run mocha unit tests on this
|
|
19
|
+
package, without having any actual unit tests in it.
|
|
20
|
+
This way a coverage report will be generated,
|
|
21
|
+
showing 0% coverage, instead of no report.
|
|
22
|
+
This file can be removed once we have real unit
|
|
23
|
+
tests in place. */
|
|
24
|
+
|
|
25
|
+
describe('graph package', () => {
|
|
26
|
+
it('should support code coverage statistics', () => true);
|
|
18
27
|
});
|