node-karin 0.6.5 → 0.6.6

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/lib/tools/init.js CHANGED
@@ -32,7 +32,7 @@ const npmPack = JSON.parse(fs.readFileSync(path.join(karinDir, 'package.json'),
32
32
  npmPack.main = './node_modules/node-karin/lib/index.js'
33
33
  delete npmPack.bin
34
34
  delete npmPack.types
35
- npmPack.dependencies = pack.dependencies
35
+ npmPack.dependencies['node-karin'] = pack.dependencies['node-karin']
36
36
  fs.writeFileSync('./package.json', JSON.stringify(npmPack, null, 2))
37
37
  // 复制 pnpm-workspace.yaml 到根目录
38
38
  fs.copyFileSync(path.join(karinDir, 'pnpm-workspace.yaml'), './pnpm-workspace.yaml')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-karin",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "private": false,
5
5
  "description": "基于 Kritor 进行开发的nodejs机器人框架",
6
6
  "homepage": "https://github.com/KarinJS/Karin",