Skip to content

Commit 962581a

Browse files
committed
Finally got the devServer and output path to match
1 parent 63b4129 commit 962581a

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

azure-devops-extension-dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id":"RestDataMappingPicklistDev",
3-
"version": "0.3.1",
3+
"version": "0.3.3",
44
"baseUri": "https://localhost:44300",
55
"public": false,
66
"private":true

azure-devops-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1.0,
33
"id": "RestDataMappingPicklist",
44
"publisher": "dedac",
5-
"version": "0.3.1",
5+
"version": "0.3.3",
66
"name": "Rest Data Mapping Picklist",
77
"description": "Load work item values from a specified REST endpoint and map additional REST data to your work item",
88
"public": true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rest-data-mapping-picklist",
3-
"version": "0.3.1",
3+
"version": "0.3.3",
44
"description": "An Azure DevOps Work Item Control for loading values from a Rest endpoint",
55
"main": "index.js",
66
"repository": {

webpack.config.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ const controlConfig = {
77
mode: 'development',
88
output: {
99
filename: 'selector.js',
10-
path: path.resolve(__dirname, 'dist'),
11-
publicPath: '/dist/',
1210
},
1311
devtool: 'inline-source-map',
1412
devServer: {
1513
server: 'https',
16-
port:44300
14+
port:44300,
15+
devMiddleware: {
16+
publicPath: '/dist/'
17+
}
1718
},
1819
resolve: {
1920
extensions: ['.json', '.ts', '.tsx', '.js','.css'],

0 commit comments

Comments
 (0)