Matt Lavery
Matt Lavery
Agree if the output is a variable/file I could easily write an action that would pick that up and create a comment in the PR, maybe just with the first...
In my case the issue seems to be that the `id` is not being carried forward into the generated HTML  This was because i was trying to pass the...
Ran `npm uninstall @types/fs-extra`, updated package.json and the ran `npm install`
Gulp compile is now ``` PS C:\GitHub\sqlops-mssql-db-insights> gulp compile [21:32:31] Using gulpfile C:\GitHub\sqlops-mssql-db-insights\gulpfile.js [21:32:31] Starting 'compile'... [21:32:31] Starting 'compile:src'... C:/GitHub/sqlops-mssql-db-insights/node_modules/sqlops/sqlops.d.ts(1134,3): error TS7008: Member 'frequencyRelativeIntervals' implicitly has an 'any' type. C:/GitHub/sqlops-mssql-db-insights/node_modules/sqlops/sqlops.d.ts(1134,31):...
Current version ``` PS C:\GitHub\sqlops-mssql-instance-insights> vsce -V 1.39.0 PS C:\GitHub\sqlops-mssql-instance-insights> ``` The package is up to 1.44.0 @ [https://www.npmjs.com/package/vsce](https://www.npmjs.com/package/vsce) `` PS C:\GitHub\sqlops-mssql-instance-insights> npm view vsce version 1.44.0 PS C:\GitHub\sqlops-mssql-instance-insights> ```...
Updated package.json then ran `npm update vsce -g` which has brought it up to ***1.44.0*** Here is the transcript. ``` PS C:\GitHub\sqlops-mssql-instance-insights> npm update npm WARN optional SKIPPING OPTIONAL DEPENDENCY:...
Problem was with this line of BuildVSIX.ps1 ``` # Get the packages to build in this repo $packageFiles = Get-ChildItem -Path $scriptPath -Recurse -Filter 'package.json' ``` This is legacy code...
Problem was with this line of BuildVSIX.ps1 ``` # Get the packages to build in this repo $packageFiles = Get-ChildItem -Path $scriptPath -Recurse -Filter 'package.json' ``` This is legacy code...
After comparing the ***sqlops*** module with the ***vscode*** module, I have found that the issue seems to be due to a missing sqlops.d.ts file in the [sqlops npm module](https://github.com/anthonydresser/sqlops-extension-sqlops) that...
Needed a postinstall step in scripts section of package.json I had the install script referenced in the prepare step but not in the postinstall. This is required as both the...