@eclipse-glsp/vscode-integration-webview 1.1.0-RC02 → 1.1.0-RC04

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.
@@ -19,5 +19,5 @@ export declare const CopyPasteHandlerProvider: unique symbol;
19
19
  * Service identifier and type definition to bind the {@link ICopyPasteHandler} to an provider.
20
20
  * This enables asynchronous injections and can be used to bypass circular dependency issues.
21
21
  */
22
- export declare type CopyPasteHandlerProvider = () => Promise<ICopyPasteHandler>;
22
+ export type CopyPasteHandlerProvider = () => Promise<ICopyPasteHandler>;
23
23
  //# sourceMappingURL=copy-paste-handler-provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"copy-paste-handler-provider.d.ts","sourceRoot":"","sources":["../src/copy-paste-handler-provider.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAElF,OAAO,EAAE,iBAAiB,EAAE,MAAM,iEAAiE,CAAC;AAEpG,eAAO,MAAM,wBAAwB,eAAqC,CAAC;AAC3E;;;GAGG;AACH,oBAAY,wBAAwB,GAAG,MAAM,OAAO,CAAC,iBAAiB,CAAC,CAAC"}
1
+ {"version":3,"file":"copy-paste-handler-provider.d.ts","sourceRoot":"","sources":["../src/copy-paste-handler-provider.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAElF,OAAO,EAAE,iBAAiB,EAAE,MAAM,iEAAiE,CAAC;AAEpG,eAAO,MAAM,wBAAwB,eAAqC,CAAC;AAC3E;;;GAGG;AACH,MAAM,MAAM,wBAAwB,GAAG,MAAM,OAAO,CAAC,iBAAiB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/vscode-integration-webview",
3
- "version": "1.1.0-RC02",
3
+ "version": "1.1.0-RC04",
4
4
  "description": "Integration of a GLSP diagram in a VS Code extensions (WebView part)",
5
5
  "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
6
6
  "keywords": [
@@ -32,24 +32,24 @@
32
32
  "css"
33
33
  ],
34
34
  "dependencies": {
35
- "@eclipse-glsp/client": "1.1.0-RC02",
35
+ "@eclipse-glsp/client": "1.1.0-RC04",
36
36
  "sprotty-vscode-webview": "~0.3.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "reflect-metadata": "^0.1.13"
40
40
  },
41
41
  "scripts": {
42
- "prepare": "yarn clean && yarn build && yarn lint",
43
- "clean": "rimraf lib tsconfig.tsbuildinfo",
44
- "build": "tsc",
45
- "watch": "tsc -w",
42
+ "build": "tsc -b",
43
+ "clean": "rimraf lib tsconfig.tsbuildinfo ",
46
44
  "lint": "eslint --ext .ts,.tsx ./src",
47
- "lint:fix": "eslint --fix --ext .ts,.tsx ./src"
45
+ "lint:ci": "yarn lint -o eslint.xml -f checkstyle",
46
+ "prepare": "yarn clean && yarn build",
47
+ "watch": "tsc -w"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public"
51
51
  },
52
52
  "main": "lib/index",
53
53
  "types": "lib/index",
54
- "gitHead": "efbb6f2a7b74d65712f4cacff796ecb1e8b65c6c"
54
+ "gitHead": "fb86ba8b542a4403bf8d4e193b888c36f027e57d"
55
55
  }