@pikku/cli 0.9.9 → 0.9.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @pikku/cli
2
2
 
3
+ ## 0.9.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 501c120: fix: rpc internal meta file wasn't being imported
8
+ - Updated dependencies [501c120]
9
+ - @pikku/inspector@0.9.5
10
+
3
11
  ## 0.9.9
4
12
 
5
13
  ### Patch Changes
package/bin/pikku-all.ts CHANGED
@@ -116,6 +116,8 @@ const runAll = async (
116
116
  await pikkuRPCExposedMap(logger, cliConfig, visitState)
117
117
  await pikkuRPCClient(logger, cliConfig)
118
118
 
119
+ allImports.push(cliConfig.rpcInternalWiringMetaFile)
120
+
119
121
  const schemas = await pikkuSchemas(logger, cliConfig, visitState)
120
122
  if (schemas) {
121
123
  allImports.push(`${cliConfig.schemaDirectory}/register.gen.ts`)
@@ -67,6 +67,7 @@ const runAll = async (logger, cliConfig, options) => {
67
67
  await pikkuRPCInternalMap(logger, cliConfig, visitState);
68
68
  await pikkuRPCExposedMap(logger, cliConfig, visitState);
69
69
  await pikkuRPCClient(logger, cliConfig);
70
+ allImports.push(cliConfig.rpcInternalWiringMetaFile);
70
71
  const schemas = await pikkuSchemas(logger, cliConfig, visitState);
71
72
  if (schemas) {
72
73
  allImports.push(`${cliConfig.schemaDirectory}/register.gen.ts`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/cli",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -23,7 +23,7 @@
23
23
  "dependencies": {
24
24
  "@openapi-contrib/json-schema-to-openapi-schema": "^4.0.2",
25
25
  "@pikku/core": "^0.9.9",
26
- "@pikku/inspector": "^0.9.4",
26
+ "@pikku/inspector": "^0.9.5",
27
27
  "@types/cookie": "^1.0.0",
28
28
  "@types/uuid": "^10.0.0",
29
29
  "chalk": "^5.5.0",