@pikku/cli 0.6.19 → 0.6.20

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.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 531f4b5: refactor: using userSession.set to set cookies with middleware
8
+ - Updated dependencies [531f4b5]
9
+ - @pikku/core@0.6.24
10
+
3
11
  ## 0.6.19
4
12
 
5
13
  ### Patch Changes
@@ -10,7 +10,6 @@ export const pikkuSchemas = async (
10
10
  { tsconfig, schemaDirectory, supportsImportAttributes }: PikkuCLIConfig,
11
11
  { http }: InspectorState
12
12
  ) => {
13
- console.log('Generating schemas...')
14
13
  return await logCommandInfoAndTime(
15
14
  'Creating schemas',
16
15
  'Created schemas',
@@ -3,7 +3,6 @@ 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...');
7
6
  return await logCommandInfoAndTime('Creating schemas', 'Created schemas', [false], async () => {
8
7
  const schemas = await generateSchemas(tsconfig, http.typesMap, http.meta);
9
8
  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.19",
3
+ "version": "0.6.20",
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.23",
25
+ "@pikku/core": "^0.6.24",
26
26
  "@pikku/inspector": "^0.6.4",
27
27
  "@types/cookie": "^0.6.0",
28
28
  "@types/uuid": "^10.0.0",