|
2 | 2 | "name": "launchdarkly", |
3 | 3 | "displayName": "LaunchDarkly", |
4 | 4 | "description": "View LaunchDarkly feature flags in your editor.", |
5 | | - "version": "2.1.0", |
| 5 | + "version": "2.1.1", |
6 | 6 | "publisher": "launchdarkly", |
7 | 7 | "engines": { |
8 | 8 | "vscode": "^1.34.0" |
|
16 | 16 | "activationEvents": [ |
17 | 17 | "*" |
18 | 18 | ], |
19 | | - "main": "./out/src/extension", |
| 19 | + "main": "./dist/extension", |
20 | 20 | "contributes": { |
21 | 21 | "configuration": { |
22 | 22 | "type": "object", |
|
90 | 90 | ] |
91 | 91 | }, |
92 | 92 | "scripts": { |
93 | | - "vscode:prepublish": "tsc -p ./", |
94 | | - "compile": "tsc -watch -p ./", |
| 93 | + "vscode:prepublish": "webpack --mode production", |
| 94 | + "compile": "webpack --mode none", |
| 95 | + "watch": "webpack --mode none --watch", |
| 96 | + "test-compile": "tsc -p ./", |
95 | 97 | "postinstall": "node ./node_modules/vscode/bin/install", |
96 | | - "test": "yarn run prettier:check && node ./node_modules/vscode/bin/test", |
| 98 | + "test": "yarn run prettier:check && yarn run test-compile && cp ./package.json ./out/package.json && node ./node_modules/vscode/bin/test", |
97 | 99 | "prettier:write": "prettier --single-quote true --print-width 120 --use-tabs true --trailing-comma all --write \"{src,tests}/**/*.ts\"", |
98 | 100 | "prettier:check": "prettier --single-quote true --print-width 120 --use-tabs true --trailing-comma all --list-different \"{src,tests}/**/*.ts\"" |
99 | 101 | }, |
|
103 | 105 | "mocha": "5.2.0", |
104 | 106 | "prettier": "^1.5.3", |
105 | 107 | "pretty-error": "^2.1.1", |
| 108 | + "ts-loader": "6.0.4", |
106 | 109 | "typescript": "^2.4.2", |
107 | | - "yarn": "^1.17.0", |
108 | | - "vscode": "^1.1.34" |
| 110 | + "vscode": "^1.1.34", |
| 111 | + "webpack": "4.35.0", |
| 112 | + "webpack-cli": "3.3.5", |
| 113 | + "yarn": "^1.17.0" |
109 | 114 | }, |
110 | 115 | "dependencies": { |
111 | 116 | "@types/lodash": "4.14.116", |
|
0 commit comments