netcore-blueprint 0.0.77 → 0.0.79

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
@@ -10,6 +10,6 @@ How to use the blueprint
10
10
  - copy-module CopiedModuleName TargetFolder (Run in the folder Modules right outside the solution) (copy-module CopiedModuleName TargetFolder --force)
11
11
 
12
12
  //AI Assistant
13
- - create-assistant-module
13
+ - create-assistant-item
14
14
  - create-assistant
15
- - copy-assistant (Chỉ copy được khi assistant module đã tồn tại)
15
+ - copy-assistant-item
@@ -23,9 +23,9 @@ if (!newAssistantName) {
23
23
  // Template source
24
24
  // =======================
25
25
 
26
- const sourceAssistantName = "__ASSISTANT_NAME__";
26
+ const sourceAssistantName = "AIAssistantModule";
27
27
 
28
- const assistantsTemplateRoot = path.join(__dirname, "..", "Assistants");
28
+ const assistantsTemplateRoot = path.join(__dirname, "..", "Modules");
29
29
  const sourceAssistantPath = path.join(assistantsTemplateRoot, sourceAssistantName);
30
30
 
31
31
  // =======================
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "netcore-blueprint",
3
- "version": "0.0.77",
3
+ "version": "0.0.79",
4
4
  "description": "A custom project blueprint",
5
5
  "main": "create.js",
6
6
  "bin": {
7
7
  "create-app": "./bin/create-app.js",
8
8
  "create-module": "./bin/create-module.js",
9
- "copy-module": "./bin/copy-module.js"
9
+ "copy-module": "./bin/copy-module.js",
10
+ "create-assistant": "./bin/create-assistant.js"
10
11
  },
11
12
  "scripts": {
12
13
  "test": "echo \"Error: no test specified\" && exit 1"