@ai-dev-tools/csharp-copilot-core 0.0.28 → 0.0.29

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 CHANGED
@@ -9,7 +9,7 @@ Core library for csharp-copilot - AI-powered C# unit test generation tool.
9
9
  Install the package globally to use the `csharputc` command anywhere:
10
10
 
11
11
  ```bash
12
- npm install -g @aidevtools/csharp-copilot-core
12
+ npm install -g @ai-dev-tools/csharp-copilot-core
13
13
  ```
14
14
 
15
15
  Or if you're working with the source code:
@@ -136,10 +136,12 @@ 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
139
141
  ```bash
140
142
  npm logout
141
143
  npm login --registry=https://registry.npmjs.org/
142
- $ npm publish --registry https://registry.npmjs.org/ --access public
144
+ npm publish --registry https://registry.npmjs.org/ --access public --otp=YOUR_2FA_CODE
143
145
  ```
144
146
 
145
147
  ### del published package within 72 hours
@@ -149,7 +151,7 @@ npm unpublish @ai-dev-tools/csharp-copilot-core@1.0.19
149
151
  ```
150
152
 
151
153
  Note:
152
- if you want to publish to devops feeds, use the file in /publish
154
+ if you want to publish to devops feeds, use the file in /devops
153
155
 
154
156
  ### Scripts
155
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-dev-tools/csharp-copilot-core",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Core library for csharp-copilot",
5
5
  "main": "out/index.js",
6
6
  "typings": "out/index.d.ts",
File without changes