@pikku/cli 0.6.18 → 0.6.19

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.6.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 1c8c470: removing a console
8
+ - Updated dependencies [1c8c470]
9
+ - @pikku/core@0.6.23
10
+
3
11
  ## 0.6.18
4
12
 
5
13
  ### Patch Changes
@@ -10,7 +10,7 @@ export const pikkuSchemas = async (
10
10
  { tsconfig, schemaDirectory, supportsImportAttributes }: PikkuCLIConfig,
11
11
  { http }: InspectorState
12
12
  ) => {
13
- console.log('Generating schemas...', supportsImportAttributes)
13
+ console.log('Generating schemas...')
14
14
  return await logCommandInfoAndTime(
15
15
  'Creating schemas',
16
16
  'Created schemas',
@@ -3,7 +3,7 @@ import { getPikkuCLIConfig } from '../src/pikku-cli-config.js';
3
3
  import { logCommandInfoAndTime, logPikkuLogo } from '../src/utils.js';
4
4
  import { inspectorGlob } from '../src/inspector-glob.js';
5
5
  export const pikkuSchemas = async ({ tsconfig, schemaDirectory, supportsImportAttributes }, { http }) => {
6
- console.log('Generating schemas...', supportsImportAttributes);
6
+ console.log('Generating schemas...');
7
7
  return await logCommandInfoAndTime('Creating schemas', 'Created schemas', [false], async () => {
8
8
  const schemas = await generateSchemas(tsconfig, http.typesMap, http.meta);
9
9
  await saveSchemas(schemaDirectory, schemas, http.typesMap, http.meta, supportsImportAttributes);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/cli",
3
- "version": "0.6.18",
3
+ "version": "0.6.19",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@openapi-contrib/json-schema-to-openapi-schema": "^3.0.2",
25
- "@pikku/core": "^0.6.22",
25
+ "@pikku/core": "^0.6.23",
26
26
  "@pikku/inspector": "^0.6.4",
27
27
  "@types/cookie": "^0.6.0",
28
28
  "@types/uuid": "^10.0.0",