Skip to content

Commit

Permalink
Merge pull request #55 from Dedac/rest-url-field-parameters
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
Dedac authored Nov 19, 2021
2 parents 425dc51 + 962581a commit cfaec9c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion azure-devops-extension-dev.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id":"RestDataMappingPicklistDev",
"version": "0.3.1",
"version": "0.3.3",
"baseUri": "https://localhost:44300",
"public": false,
"private":true
Expand Down
2 changes: 1 addition & 1 deletion azure-devops-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1.0,
"id": "RestDataMappingPicklist",
"publisher": "dedac",
"version": "0.3.1",
"version": "0.3.3",
"name": "Rest Data Mapping Picklist",
"description": "Load work item values from a specified REST endpoint and map additional REST data to your work item",
"public": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rest-data-mapping-picklist",
"version": "0.3.1",
"version": "0.3.3",
"description": "An Azure DevOps Work Item Control for loading values from a Rest endpoint",
"main": "index.js",
"repository": {
Expand Down
7 changes: 4 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ const controlConfig = {
mode: 'development',
output: {
filename: 'selector.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/dist/',
},
devtool: 'inline-source-map',
devServer: {
server: 'https',
port:44300
port:44300,
devMiddleware: {
publicPath: '/dist/'
}
},
resolve: {
extensions: ['.json', '.ts', '.tsx', '.js','.css'],
Expand Down

0 comments on commit cfaec9c

Please sign in to comment.