Skip to content

Commit 77e2c9d

Browse files
Merge pull request #141 from Power-Maverick/main
v2.1.8
2 parents a8a0104 + caa1b47 commit 77e2c9d

File tree

6 files changed

+18
-90
lines changed

6 files changed

+18
-90
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
run: |
2424
npm install
2525
npm ci
26-
npm run package
26+
npm run compile

.vscode/tasks.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,10 @@
55
"tasks": [
66
{
77
"type": "npm",
8-
"script": "webpack",
9-
"problemMatcher": "$ts-webpack",
10-
"isBackground": true,
11-
"presentation": {
12-
"reveal": "never"
13-
},
14-
"group": {
15-
"kind": "build",
16-
"isDefault": true
17-
}
8+
"script": "webpack-dev",
9+
"problemMatcher": [],
10+
"label": "npm: webpack-dev",
11+
"detail": "webpack --mode development --watch"
1812
}
1913
]
2014
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<a href="https://github.com/Power-Maverick/DataverseDevTools-VSCode/discussions/categories/q-a">Support</a>
5252
</h3>
5353

54-
> Login with Azure is temporarily disabled due to an issue with the @azure/identity package [(issue #26997)](https://github.com/Azure/azure-sdk-for-js/issues/26997)
54+
> CURRENTLY TOOL IS FACING SOME ISSUES WITH THE LATEST VSCODE VERSION AND I AM ACTIVELY TRYING TO RESOLVE IT. There is an open discussion created with VS Code team which you can find [here](https://github.com/microsoft/vscode-discussions/discussions/859#discussion-5711556)
5555
5656
> Do check-out the [planned features](#-planned-features) list. We need your help to complete these planned features.
5757

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Dataverse DevTools",
44
"description": "The all-in-one tool to develop code for Dataverse/Dynamics 365. Helps you connect to a Dataverse environment, generate TypeScript definitions for entities, create different type of Dataverse-specific projects and much more.",
55
"publisher": "danish-naglekar",
6-
"version": "2.1.7",
6+
"version": "2.1.8",
77
"engines": {
88
"vscode": "^1.58.0"
99
},
@@ -28,10 +28,9 @@
2828
],
2929
"qna": "https://github.com/Power-Maverick/DataverseDevTools-VSCode/discussions",
3030
"activationEvents": [
31-
"onView:dvd-explorer",
32-
"onWebviewPanel:dvd-explorer"
31+
"*"
3332
],
34-
"main": "./dist/extension",
33+
"main": "./out/extension.js",
3534
"icon": "resources/DVDT-Icon.png",
3635
"contributes": {
3736
"views": {
@@ -530,13 +529,13 @@
530529
}
531530
},
532531
"scripts": {
533-
"vscode:prepublish": "npm run package",
534-
"webpack": "webpack --mode development",
535-
"webpack-dev": "webpack --mode development --watch",
536-
"package": "webpack --mode production --devtool hidden-source-map",
537-
"test-compile": "tsc -p ./",
532+
"vscode:prepublish": "npm run compile",
533+
"compile": "tsc -p ./",
534+
"watch": "tsc -watch -p ./",
535+
"pretest": "npm run compile && npm run lint",
538536
"lint": "eslint src --ext ts",
539537
"format": "prettier --write src",
538+
"test": "node ./out/test/runTest.js",
540539
"version": "auto-changelog -p && git add CHANGELOG.md",
541540
"contributors:add": "all-contributors add",
542541
"contributors:generate": "all-contributors generate"
@@ -550,18 +549,17 @@
550549
"@types/vscode": "^1.58.0",
551550
"@typescript-eslint/eslint-plugin": "^4.26.0",
552551
"@typescript-eslint/parser": "^4.26.0",
553-
"@vscode/test-electron": "^2.3.5",
554552
"all-contributors-cli": "^6.20.0",
555553
"auto-changelog": "^2.3.0",
556554
"eslint": "^7.27.0",
557555
"glob": "^7.1.7",
558556
"mocha": "^10.0.0",
559-
"ts-loader": "^9.5.0",
560557
"typescript": "^4.3.2",
561-
"webpack": "^5.88.2",
562-
"webpack-cli": "^5.1.4"
558+
"vscode-test": "^1.5.2"
563559
},
564560
"dependencies": {
561+
"@azure/identity": "^3.0.0",
562+
"@azure/identity-vscode": "^1.0.0",
565563
"@azure/msal-node": "^1.3.0",
566564
"@types/fs-extra": "^9.0.12",
567565
"@types/lodash": "^4.14.171",

webpack.config.js

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)