@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.
Files changed (2) hide show
  1. package/ReadMe.md +0 -2
  2. package/package.json +3 -1
package/ReadMe.md CHANGED
@@ -136,8 +136,6 @@ This will:
136
136
 
137
137
  ### publish to npmjs
138
138
 
139
- 1. put your npm token in ./npmrc: registry.npmjs.org/:_authToken=${NPM_TOKEN}
140
- 2. execute following cmd
141
139
  ```bash
142
140
  npm logout
143
141
  npm login --registry=https://registry.npmjs.org/
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@ai-dev-tools/csharp-copilot-core",
3
- "version": "0.0.32",
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"