@ai-dev-tools/csharp-copilot-core 0.0.32 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ReadMe.md +0 -2
- package/package.json +3 -1
package/ReadMe.md
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-dev-tools/csharp-copilot-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
4
4
|
"description": "Core library for csharp-copilot",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"typings": "out/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
+
"clean": "npx --yes rimraf out && npx --yes rimraf .tsbuildinfo",
|
|
9
|
+
"prepublishOnly": "npm install && npm run clean && npm run build",
|
|
8
10
|
"build": "tsc && npm run copy-script",
|
|
9
11
|
"copy-script": "cpy \"src/**/*.liquid\" \"tools/\" out",
|
|
10
12
|
"setup-npm-auth": "npm install -g @microsoft/artifacts-npm-credprovider --registry https://pkgs.dev.azure.com/mseng/226da8e7-b1c0-4167-9678-53f461e07706/_packaging/AzureArtifacts/npm/registry/ && set NUGET_CREDENTIALPROVIDER_VSTS_TOKENTYPE=SelfDescribing && artifacts-npm-credprovider"
|